@@ -507,6 +507,7 @@ export interface CompositeReinforcementTuningRewardConfigWeightedRewardConfig {
507507
508508// @public
509509export interface ComputerUse {
510+ disabledSafetyPolicies? : SafetyPolicy [];
510511 enablePromptInjectionDetection? : boolean ;
511512 environment? : Environment ;
512513 excludedPredefinedFunctions? : string [];
@@ -2594,7 +2595,15 @@ export namespace Interactions {
25942595 // Warning: (ae-forgotten-export) The symbol "ModelOutputStep$" needs to be exported by the entry point index.d.ts
25952596 //
25962597 // (undocumented)
2597- export type ModelOutputStep = ModelOutputStep$ ;
2598+ export interface ModelOutputStep extends ModelOutputStep$ {
2599+ }
2600+ // (undocumented)
2601+ export namespace ModelOutputStep {
2602+ // Warning: (ae-forgotten-export) The symbol "Error$2" needs to be exported by the entry point index.d.ts
2603+ //
2604+ // (undocumented)
2605+ export type Error = Error$2 ;
2606+ }
25982607 // Warning: (ae-forgotten-export) The symbol "PlaceCitation$" needs to be exported by the entry point index.d.ts
25992608 //
26002609 // (undocumented)
@@ -2878,10 +2887,18 @@ export namespace Interactions {
28782887 //
28792888 // (undocumented)
28802889 export type UserInputStep = UserInputStep$ ;
2890+ // Warning: (ae-forgotten-export) The symbol "VideoConfig$" needs to be exported by the entry point index.d.ts
2891+ //
2892+ // (undocumented)
2893+ export type VideoConfig = VideoConfig$ ;
28812894 // Warning: (ae-forgotten-export) The symbol "VideoContent$" needs to be exported by the entry point index.d.ts
28822895 //
28832896 // (undocumented)
28842897 export type VideoContent = VideoContent$ ;
2898+ // Warning: (ae-forgotten-export) The symbol "VideoResponseFormat$" needs to be exported by the entry point index.d.ts
2899+ //
2900+ // (undocumented)
2901+ export type VideoResponseFormat = VideoResponseFormat$ ;
28852902 // Warning: (ae-forgotten-export) The symbol "WebhookConfig$" needs to be exported by the entry point index.d.ts
28862903 //
28872904 // (undocumented)
@@ -4165,6 +4182,18 @@ export enum SafetyFilterLevel {
41654182 BLOCK_ONLY_HIGH = " BLOCK_ONLY_HIGH"
41664183}
41674184
4185+ // @public
4186+ export enum SafetyPolicy {
4187+ ACCOUNT_CREATION = " ACCOUNT_CREATION" ,
4188+ COMMUNICATION_TOOL = " COMMUNICATION_TOOL" ,
4189+ DATA_MODIFICATION = " DATA_MODIFICATION" ,
4190+ FINANCIAL_TRANSACTIONS = " FINANCIAL_TRANSACTIONS" ,
4191+ LEGAL_TERMS_AND_AGREEMENTS = " LEGAL_TERMS_AND_AGREEMENTS" ,
4192+ SAFETY_POLICY_UNSPECIFIED = " SAFETY_POLICY_UNSPECIFIED" ,
4193+ SENSITIVE_DATA_MODIFICATION = " SENSITIVE_DATA_MODIFICATION" ,
4194+ USER_CONSENT_MANAGEMENT = " USER_CONSENT_MANAGEMENT"
4195+ }
4196+
41684197// @public
41694198export interface SafetyRating {
41704199 blocked? : boolean ;
0 commit comments