We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fed70af commit 4a1a387Copy full SHA for 4a1a387
1 file changed
src/genai/types/common.ts
@@ -2356,8 +2356,13 @@ export declare interface RunQueryJobAgentEngineConfig {
2356
abortSignal?: AbortSignal;
2357
/** The query to send to the agent engine. */
2358
query?: string;
2359
- /** The GCS bucket to use for the query. */
2360
- gcsBucket?: string;
+ /** The GCS URI to use for the output.
+ If it is a file, the system use this file to store the response.
2361
+ If it represents a directory, the system automatically generate a file
2362
+ for the response.
2363
+ In both cases, the input query will be stored in the same directory under
2364
+ the same file name prefix as the output file. */
2365
+ outputGcsUri?: string;
2366
}
2367
2368
/** Result of running a query job. */
0 commit comments