|
904 | 904 | "type": "string" |
905 | 905 | }, |
906 | 906 | "source": { |
907 | | - "description": "Optional. Indicate the source of the conversation. If not set, Source.Live will be applied by default.", |
| 907 | + "description": "Optional. Indicate the source of the conversation. If not set, Source.Live will be applied by default. Will be deprecated in favor of `sources` field.", |
908 | 908 | "enum": [ |
909 | 909 | "SOURCE_UNSPECIFIED", |
910 | 910 | "LIVE", |
|
919 | 919 | ], |
920 | 920 | "location": "query", |
921 | 921 | "type": "string" |
| 922 | + }, |
| 923 | + "sources": { |
| 924 | + "description": "Optional. Indicate the sources of the conversations. If not set, all available sources will be applied by default.", |
| 925 | + "enum": [ |
| 926 | + "SOURCE_UNSPECIFIED", |
| 927 | + "LIVE", |
| 928 | + "SIMULATOR", |
| 929 | + "EVAL" |
| 930 | + ], |
| 931 | + "enumDescriptions": [ |
| 932 | + "Unspecified source.", |
| 933 | + "The conversation is from the live end user.", |
| 934 | + "The conversation is from the simulator.", |
| 935 | + "The conversation is from the evaluation." |
| 936 | + ], |
| 937 | + "location": "query", |
| 938 | + "repeated": true, |
| 939 | + "type": "string" |
922 | 940 | } |
923 | 941 | }, |
924 | 942 | "path": "v1/{+parent}/conversations", |
|
2228 | 2246 | } |
2229 | 2247 | } |
2230 | 2248 | }, |
2231 | | - "revision": "20260204", |
| 2249 | + "revision": "20260209", |
2232 | 2250 | "rootUrl": "https://ces.googleapis.com/", |
2233 | 2251 | "schemas": { |
2234 | 2252 | "Action": { |
|
2966 | 2984 | "description": "Optional. Whether the callback is disabled. Disabled callbacks are ignored by the agent.", |
2967 | 2985 | "type": "boolean" |
2968 | 2986 | }, |
| 2987 | + "proactiveExecutionEnabled": { |
| 2988 | + "description": "Optional. If enabled, the callback will also be executed on intermediate model outputs. This setting only affects after model callback. **ENABLE WITH CAUTION**. Typically after model callback only needs to be executed after receiving all model responses. Enabling proactive execution may have negative implication on the execution cost and latency, and should only be enabled in rare situations.", |
| 2989 | + "type": "boolean" |
| 2990 | + }, |
2969 | 2991 | "pythonCode": { |
2970 | 2992 | "description": "Required. The python code to execute for the callback.", |
2971 | 2993 | "type": "string" |
|
3458 | 3480 | "INPUT_TYPE_TEXT", |
3459 | 3481 | "INPUT_TYPE_AUDIO", |
3460 | 3482 | "INPUT_TYPE_IMAGE", |
3461 | | - "INPUT_TYPE_BLOB" |
| 3483 | + "INPUT_TYPE_BLOB", |
| 3484 | + "INPUT_TYPE_TOOL_RESPONSE", |
| 3485 | + "INPUT_TYPE_VARIABLES" |
3462 | 3486 | ], |
3463 | 3487 | "enumDescriptions": [ |
3464 | 3488 | "Unspecified input type.", |
3465 | 3489 | "The input message is text.", |
3466 | 3490 | "The input message is audio.", |
3467 | 3491 | "The input message is image.", |
3468 | | - "The input message is blob file." |
| 3492 | + "The input message is blob file.", |
| 3493 | + "The input message is client function tool response.", |
| 3494 | + "The input message are variables." |
3469 | 3495 | ], |
3470 | 3496 | "type": "string" |
3471 | 3497 | }, |
|
4464 | 4490 | "type": "string" |
4465 | 4491 | }, |
4466 | 4492 | "type": "array" |
| 4493 | + }, |
| 4494 | + "promptConfig": { |
| 4495 | + "$ref": "GoogleSearchToolPromptConfig", |
| 4496 | + "description": "Optional. Prompt instructions passed to planner on how the search results should be processed for text and voice." |
| 4497 | + } |
| 4498 | + }, |
| 4499 | + "type": "object" |
| 4500 | + }, |
| 4501 | + "GoogleSearchToolPromptConfig": { |
| 4502 | + "description": "Prompt settings used by the model when processing or summarizing the google search results.", |
| 4503 | + "id": "GoogleSearchToolPromptConfig", |
| 4504 | + "properties": { |
| 4505 | + "textPrompt": { |
| 4506 | + "description": "Optional. Defines the prompt used for the system instructions when interacting with the agent in chat conversations. If not set, default prompt will be used.", |
| 4507 | + "type": "string" |
| 4508 | + }, |
| 4509 | + "voicePrompt": { |
| 4510 | + "description": "Optional. Defines the prompt used for the system instructions when interacting with the agent in voice conversations. If not set, default prompt will be used.", |
| 4511 | + "type": "string" |
4467 | 4512 | } |
4468 | 4513 | }, |
4469 | 4514 | "type": "object" |
|
4773 | 4818 | "description": "The [Google Cloud Storage](https://cloud.google.com/storage/docs/) URI from which to import app. The format of this URI must be `gs:///`.", |
4774 | 4819 | "type": "string" |
4775 | 4820 | }, |
| 4821 | + "ignoreAppLock": { |
| 4822 | + "description": "Optional. Flag for overriding the app lock during import. If set to true, the import process will ignore the app lock.", |
| 4823 | + "type": "boolean" |
| 4824 | + }, |
4776 | 4825 | "importOptions": { |
4777 | 4826 | "$ref": "ImportAppRequestImportOptions", |
4778 | 4827 | "description": "Optional. Options governing the import process for the app." |
|
0 commit comments