@wix/auto_sdk_ai-gateway_generators 1.0.73 → 1.0.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +47 -298
- package/build/cjs/index.js +4 -202
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -1
- package/build/cjs/index.typings.js +4 -202
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +47 -294
- package/build/cjs/meta.js +4 -202
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +47 -298
- package/build/es/index.mjs +4 -200
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs +4 -200
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +47 -294
- package/build/es/meta.mjs +4 -200
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +11 -11
- package/build/internal/cjs/index.js +4 -202
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +57 -308
- package/build/internal/cjs/index.typings.js +4 -202
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +47 -294
- package/build/internal/cjs/meta.js +4 -202
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +11 -11
- package/build/internal/es/index.mjs +4 -200
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +57 -308
- package/build/internal/es/index.typings.mjs +4 -200
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +47 -294
- package/build/internal/es/meta.mjs +4 -200
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
interface Prompt extends PromptModelRequestOneOf {
|
|
2
2
|
/** OpenAI chat completion request. */
|
|
3
3
|
openAiChatCompletionRequest?: OpenaiproxyV1CreateChatCompletionRequest;
|
|
4
|
-
/** Google bison text completion request. */
|
|
5
|
-
googleTextBisonRequest?: TextBisonPredictRequest;
|
|
6
|
-
/** Google bison chat completion request. */
|
|
7
|
-
googleChatBisonRequest?: ChatBisonPredictRequest;
|
|
8
4
|
/** Azure OpenAI chat completion request. */
|
|
9
5
|
azureChatCompletionRequest?: CreateChatCompletionRequest;
|
|
10
6
|
/** Google Gemini generate content request. */
|
|
@@ -91,10 +87,6 @@ interface Prompt extends PromptModelRequestOneOf {
|
|
|
91
87
|
interface PromptModelRequestOneOf {
|
|
92
88
|
/** OpenAI chat completion request. */
|
|
93
89
|
openAiChatCompletionRequest?: OpenaiproxyV1CreateChatCompletionRequest;
|
|
94
|
-
/** Google bison text completion request. */
|
|
95
|
-
googleTextBisonRequest?: TextBisonPredictRequest;
|
|
96
|
-
/** Google bison chat completion request. */
|
|
97
|
-
googleChatBisonRequest?: ChatBisonPredictRequest;
|
|
98
90
|
/** Azure OpenAI chat completion request. */
|
|
99
91
|
azureChatCompletionRequest?: CreateChatCompletionRequest;
|
|
100
92
|
/** Google Gemini generate content request. */
|
|
@@ -371,10 +363,12 @@ declare enum OpenaiproxyV1Model {
|
|
|
371
363
|
GPT_5_NANO_2025_08_07 = "GPT_5_NANO_2025_08_07",
|
|
372
364
|
GPT_5_2_2025_12_11_COMPLETION = "GPT_5_2_2025_12_11_COMPLETION",
|
|
373
365
|
GPT_5_1_2025_11_13_COMPLETION = "GPT_5_1_2025_11_13_COMPLETION",
|
|
374
|
-
GPT_5_4_2026_03_05_COMPLETION = "GPT_5_4_2026_03_05_COMPLETION"
|
|
366
|
+
GPT_5_4_2026_03_05_COMPLETION = "GPT_5_4_2026_03_05_COMPLETION",
|
|
367
|
+
GPT_5_4_MINI_2026_03_17_COMPLETION = "GPT_5_4_MINI_2026_03_17_COMPLETION",
|
|
368
|
+
GPT_5_4_NANO_2026_03_17_COMPLETION = "GPT_5_4_NANO_2026_03_17_COMPLETION"
|
|
375
369
|
}
|
|
376
370
|
/** @enumType */
|
|
377
|
-
type OpenaiproxyV1ModelWithLiterals = OpenaiproxyV1Model | 'UNKNOWN' | 'GPT_3_5_TURBO' | 'GPT_3_5_TURBO_0301' | 'GPT_4' | 'GPT_4_0314' | 'GPT_4_32K' | 'GPT_4_32K_0314' | 'GPT_3_5_TURBO_0613' | 'GPT_3_5_TURBO_16K' | 'GPT_3_5_TURBO_16K_0613' | 'GPT_4_0613' | 'GPT_4_32K_0613' | 'GPT_3_5_TURBO_1106' | 'GPT_4_1106_PREVIEW' | 'GPT_4_VISION_PREVIEW' | 'GPT_4_TURBO_PREVIEW' | 'GPT_4_0125_PREVIEW' | 'GPT_3_5_TURBO_0125' | 'GPT_4_TURBO_2024_04_09' | 'GPT_4O_2024_05_13' | 'GPT_4O_MINI_2024_07_18' | 'GPT_4O_2024_08_06' | 'O1_PREVIEW' | 'O1_PREVIEW_2024_09_12' | 'O1_MINI' | 'O1_MINI_2024_09_12' | 'GPT_4O_2024_11_20' | 'O1_2024_12_17' | 'O3_MINI_2025_01_31' | 'GPT_4_OLD' | 'GPT_4_1_2025_04_14' | 'GPT_4_1_MINI_2025_04_14' | 'GPT_4_1_NANO_2025_04_14' | 'O3_2025_04_16' | 'O4_MINI_2025_04_16' | 'GPT_EXP' | 'GPT_EXP_2' | 'GPT_5_2025_08_07' | 'GPT_5_MINI_2025_08_07' | 'GPT_5_NANO_2025_08_07' | 'GPT_5_2_2025_12_11_COMPLETION' | 'GPT_5_1_2025_11_13_COMPLETION' | 'GPT_5_4_2026_03_05_COMPLETION';
|
|
371
|
+
type OpenaiproxyV1ModelWithLiterals = OpenaiproxyV1Model | 'UNKNOWN' | 'GPT_3_5_TURBO' | 'GPT_3_5_TURBO_0301' | 'GPT_4' | 'GPT_4_0314' | 'GPT_4_32K' | 'GPT_4_32K_0314' | 'GPT_3_5_TURBO_0613' | 'GPT_3_5_TURBO_16K' | 'GPT_3_5_TURBO_16K_0613' | 'GPT_4_0613' | 'GPT_4_32K_0613' | 'GPT_3_5_TURBO_1106' | 'GPT_4_1106_PREVIEW' | 'GPT_4_VISION_PREVIEW' | 'GPT_4_TURBO_PREVIEW' | 'GPT_4_0125_PREVIEW' | 'GPT_3_5_TURBO_0125' | 'GPT_4_TURBO_2024_04_09' | 'GPT_4O_2024_05_13' | 'GPT_4O_MINI_2024_07_18' | 'GPT_4O_2024_08_06' | 'O1_PREVIEW' | 'O1_PREVIEW_2024_09_12' | 'O1_MINI' | 'O1_MINI_2024_09_12' | 'GPT_4O_2024_11_20' | 'O1_2024_12_17' | 'O3_MINI_2025_01_31' | 'GPT_4_OLD' | 'GPT_4_1_2025_04_14' | 'GPT_4_1_MINI_2025_04_14' | 'GPT_4_1_NANO_2025_04_14' | 'O3_2025_04_16' | 'O4_MINI_2025_04_16' | 'GPT_EXP' | 'GPT_EXP_2' | 'GPT_5_2025_08_07' | 'GPT_5_MINI_2025_08_07' | 'GPT_5_NANO_2025_08_07' | 'GPT_5_2_2025_12_11_COMPLETION' | 'GPT_5_1_2025_11_13_COMPLETION' | 'GPT_5_4_2026_03_05_COMPLETION' | 'GPT_5_4_MINI_2026_03_17_COMPLETION' | 'GPT_5_4_NANO_2026_03_17_COMPLETION';
|
|
378
372
|
interface OpenaiproxyV1ChatCompletionMessage {
|
|
379
373
|
/** The role of the message author. */
|
|
380
374
|
role?: OpenaiproxyV1ChatCompletionMessageMessageRoleWithLiterals;
|
|
@@ -534,147 +528,6 @@ interface OpenaiproxyV1CreateChatCompletionRequestResponseFormat {
|
|
|
534
528
|
/** The schema object describes the output object for the model. Currently, only the JSON Schema Object is supported. */
|
|
535
529
|
schema?: Record<string, any> | null;
|
|
536
530
|
}
|
|
537
|
-
interface TextBisonPredictRequest {
|
|
538
|
-
/**
|
|
539
|
-
* TextInstance objects containing input prompts.
|
|
540
|
-
* @maxSize 100
|
|
541
|
-
*/
|
|
542
|
-
instances?: TextInstance[];
|
|
543
|
-
/** Model parameters. */
|
|
544
|
-
parameters?: PredictParameters;
|
|
545
|
-
/** Model to be invoked. */
|
|
546
|
-
model?: TextBisonModelWithLiterals;
|
|
547
|
-
}
|
|
548
|
-
interface TextInstance {
|
|
549
|
-
/**
|
|
550
|
-
* Text input to generate model response. Prompts can include preamble, questions, suggestions, instructions, or examples.
|
|
551
|
-
* @maxLength 100000
|
|
552
|
-
*/
|
|
553
|
-
prompt?: string | null;
|
|
554
|
-
}
|
|
555
|
-
interface PredictParameters {
|
|
556
|
-
/**
|
|
557
|
-
* The temperature is used for sampling during response generation, which occurs when topP and topK are applied.
|
|
558
|
-
* Temperature controls the degree of randomness in token selection. Lower temperatures are good for prompts that
|
|
559
|
-
* require a less open-ended or creative response, while higher temperatures can lead to more diverse or creative results.
|
|
560
|
-
* A temperature of 0 means that the highest probability tokens are always selected. In this case, responses for a
|
|
561
|
-
* given prompt are mostly deterministic, but a small amount of variation is still possible.
|
|
562
|
-
* For most use cases, try starting with a temperature of 0.2. If the model returns a response that's too generic,
|
|
563
|
-
* too short, or the model gives a fallback response, try increasing the temperature.
|
|
564
|
-
* @max 1
|
|
565
|
-
*/
|
|
566
|
-
temperature?: number | null;
|
|
567
|
-
/**
|
|
568
|
-
* Maximum number of tokens that can be generated in the response. A token is approximately four characters. 100 tokens correspond to roughly 60-80 words.
|
|
569
|
-
* Specify a lower value for shorter responses and a higher value for longer responses.
|
|
570
|
-
* @min 1
|
|
571
|
-
* @max 2048
|
|
572
|
-
*/
|
|
573
|
-
maxOutputTokens?: number | null;
|
|
574
|
-
/**
|
|
575
|
-
* Top-K changes how the model selects tokens for output. A top-K of 1 means the next selected token is the most probable
|
|
576
|
-
* among all tokens in the model's vocabulary (also called greedy decoding), while a top-K of 3 means that the next
|
|
577
|
-
* token is selected from among the three most probable tokens by using temperature.
|
|
578
|
-
* For each token selection step, the top-K tokens with the highest probabilities are sampled. Then tokens are further
|
|
579
|
-
* filtered based on top-P with the final token selected using temperature sampling.
|
|
580
|
-
* Specify a lower value for less random responses and a higher value for more random responses. The default top-K is 40.
|
|
581
|
-
* @min 1
|
|
582
|
-
* @max 40
|
|
583
|
-
*/
|
|
584
|
-
topK?: number | null;
|
|
585
|
-
/**
|
|
586
|
-
* Top-P changes how the model selects tokens for output. Tokens are selected from the most (see top-K) to least
|
|
587
|
-
* probable until the sum of their probabilities equals the top-P value. For example, if tokens A, B, and C have a
|
|
588
|
-
* probability of 0.3, 0.2, and 0.1 and the top-P value is 0.5, then the model will select either A or B as the next
|
|
589
|
-
* token by using temperature and excludes C as a candidate.
|
|
590
|
-
* Specify a lower value for less random responses and a higher value for more random responses. The default top-P is 0.95.
|
|
591
|
-
* @max 1
|
|
592
|
-
*/
|
|
593
|
-
topP?: number | null;
|
|
594
|
-
/**
|
|
595
|
-
* Specifies a list of strings that tells the model to stop generating text if one of the strings is encountered in
|
|
596
|
-
* the response. If a string appears multiple times in the response, then the response truncates where it's first
|
|
597
|
-
* encountered. The strings are case-sensitive.
|
|
598
|
-
* @maxSize 100
|
|
599
|
-
* @maxLength 1000
|
|
600
|
-
*/
|
|
601
|
-
stopSequences?: string[] | null;
|
|
602
|
-
/**
|
|
603
|
-
* The number of response variations to return.
|
|
604
|
-
* @min 1
|
|
605
|
-
* @max 8
|
|
606
|
-
*/
|
|
607
|
-
candidateCount?: number | null;
|
|
608
|
-
}
|
|
609
|
-
declare enum TextBisonModel {
|
|
610
|
-
UNKNOWN_TEXT_BISON_MODEL = "UNKNOWN_TEXT_BISON_MODEL",
|
|
611
|
-
TEXT_BISON = "TEXT_BISON",
|
|
612
|
-
TEXT_BISON_001 = "TEXT_BISON_001",
|
|
613
|
-
TEXT_BISON_32K = "TEXT_BISON_32K",
|
|
614
|
-
TEXT_BISON_002 = "TEXT_BISON_002",
|
|
615
|
-
TEXT_BISON_32K_002 = "TEXT_BISON_32K_002"
|
|
616
|
-
}
|
|
617
|
-
/** @enumType */
|
|
618
|
-
type TextBisonModelWithLiterals = TextBisonModel | 'UNKNOWN_TEXT_BISON_MODEL' | 'TEXT_BISON' | 'TEXT_BISON_001' | 'TEXT_BISON_32K' | 'TEXT_BISON_002' | 'TEXT_BISON_32K_002';
|
|
619
|
-
interface ChatBisonPredictRequest {
|
|
620
|
-
/**
|
|
621
|
-
* ChatInstance objects containing inputs.
|
|
622
|
-
* @maxSize 100
|
|
623
|
-
*/
|
|
624
|
-
instances?: ChatInstance[];
|
|
625
|
-
/** Model parameters. */
|
|
626
|
-
parameters?: PredictParameters;
|
|
627
|
-
/** Model to be invoked. */
|
|
628
|
-
model?: ChatBisonModelWithLiterals;
|
|
629
|
-
}
|
|
630
|
-
interface ChatInstance {
|
|
631
|
-
/**
|
|
632
|
-
* Optional. Context shapes how the model responds throughout the conversation. For example, you can use context
|
|
633
|
-
* to specify words the model can or cannot use, topics to focus on or avoid, or the response format or style.
|
|
634
|
-
* @maxLength 100000
|
|
635
|
-
*/
|
|
636
|
-
context?: string | null;
|
|
637
|
-
/**
|
|
638
|
-
* Optional. Examples for the model to learn how to respond to the conversation.
|
|
639
|
-
* @maxSize 1000
|
|
640
|
-
*/
|
|
641
|
-
examples?: Example[];
|
|
642
|
-
/**
|
|
643
|
-
* Required. Conversation history provided to the model in a structured alternate-author form. Messages appear in
|
|
644
|
-
* chronological order: oldest first, newest last. When the history of messages causes the input to exceed the
|
|
645
|
-
* maximum length, the oldest messages are removed until the entire prompt is within the allowed limit.
|
|
646
|
-
* @maxSize 1000
|
|
647
|
-
*/
|
|
648
|
-
messages?: ChatMessage[];
|
|
649
|
-
}
|
|
650
|
-
interface Example {
|
|
651
|
-
/** An example of an input Message from the user. */
|
|
652
|
-
input?: ChatMessage;
|
|
653
|
-
/** An example of what the model should output given the input. */
|
|
654
|
-
output?: ChatMessage;
|
|
655
|
-
}
|
|
656
|
-
interface ChatMessage {
|
|
657
|
-
/**
|
|
658
|
-
* Author tag for the turn.
|
|
659
|
-
* @maxLength 100000
|
|
660
|
-
*/
|
|
661
|
-
author?: string | null;
|
|
662
|
-
/**
|
|
663
|
-
* Text content of the chat message.
|
|
664
|
-
* @maxLength 100000
|
|
665
|
-
*/
|
|
666
|
-
content?: string;
|
|
667
|
-
}
|
|
668
|
-
declare enum ChatBisonModel {
|
|
669
|
-
UNKNOWN_CHAT_BISON_MODEL = "UNKNOWN_CHAT_BISON_MODEL",
|
|
670
|
-
CHAT_BISON = "CHAT_BISON",
|
|
671
|
-
CHAT_BISON_001 = "CHAT_BISON_001",
|
|
672
|
-
CHAT_BISON_32K = "CHAT_BISON_32K",
|
|
673
|
-
CHAT_BISON_002 = "CHAT_BISON_002",
|
|
674
|
-
CHAT_BISON_32K_002 = "CHAT_BISON_32K_002"
|
|
675
|
-
}
|
|
676
|
-
/** @enumType */
|
|
677
|
-
type ChatBisonModelWithLiterals = ChatBisonModel | 'UNKNOWN_CHAT_BISON_MODEL' | 'CHAT_BISON' | 'CHAT_BISON_001' | 'CHAT_BISON_32K' | 'CHAT_BISON_002' | 'CHAT_BISON_32K_002';
|
|
678
531
|
interface CreateChatCompletionRequest extends CreateChatCompletionRequestFunctionCallOneOf {
|
|
679
532
|
/** Specifying a particular function via {"name":\ "my_function"} forces the model to call that function. */
|
|
680
533
|
forceCallFunctionCallConfig?: Record<string, any> | null;
|
|
@@ -4784,6 +4637,36 @@ interface TextToImageRequest {
|
|
|
4784
4637
|
providerSettingsString?: string | null;
|
|
4785
4638
|
/** Inputs for the image generation process. */
|
|
4786
4639
|
inputs?: Inputs;
|
|
4640
|
+
/**
|
|
4641
|
+
* Defines the syntax to be used for prompt weighting.
|
|
4642
|
+
* Prompt weighting allows you to adjust how strongly different parts of your prompt influence the generated image.
|
|
4643
|
+
* @maxLength 1000
|
|
4644
|
+
*/
|
|
4645
|
+
promptWeighting?: string | null;
|
|
4646
|
+
/**
|
|
4647
|
+
* Applies optimized acceleration presets that automatically configure multiple generation parameters.
|
|
4648
|
+
* Available values: "none", "low", "medium", "high".
|
|
4649
|
+
* @maxLength 100
|
|
4650
|
+
*/
|
|
4651
|
+
acceleration?: string | null;
|
|
4652
|
+
/**
|
|
4653
|
+
* An scheduler is a component that manages the inference process. Different schedulers can be used to achieve different results.
|
|
4654
|
+
* @maxLength 1000
|
|
4655
|
+
*/
|
|
4656
|
+
scheduler?: string | null;
|
|
4657
|
+
/**
|
|
4658
|
+
* Controls the output resolution tier when the aspect ratio is automatically determined from reference images.
|
|
4659
|
+
* Available values: "1k", "2k", "4k".
|
|
4660
|
+
* @maxLength 100
|
|
4661
|
+
*/
|
|
4662
|
+
resolution?: string | null;
|
|
4663
|
+
/**
|
|
4664
|
+
* Extends the image boundaries in specified directions (outpainting).
|
|
4665
|
+
* An object with keys: top, right, bottom, left, blur.
|
|
4666
|
+
*/
|
|
4667
|
+
outpaint?: Record<string, any> | null;
|
|
4668
|
+
/** Contains additional settings that customize the behavior of the generation process. */
|
|
4669
|
+
settings?: Record<string, any> | null;
|
|
4787
4670
|
}
|
|
4788
4671
|
declare enum TextToImageRequestModel {
|
|
4789
4672
|
UNKNOWN_MODEL = "UNKNOWN_MODEL",
|
|
@@ -5788,6 +5671,7 @@ interface FrameImage {
|
|
|
5788
5671
|
/**
|
|
5789
5672
|
* Specifies the input image that will be used to constrain the video content at the specified frame position.
|
|
5790
5673
|
* Must be a URL pointing to the image. The image must be accessible publicly.
|
|
5674
|
+
* Deprecated: use `image` instead. Kept for backward compatibility.
|
|
5791
5675
|
* @maxLength 100000
|
|
5792
5676
|
*/
|
|
5793
5677
|
inputImage?: string;
|
|
@@ -5797,6 +5681,13 @@ interface FrameImage {
|
|
|
5797
5681
|
* @maxLength 20
|
|
5798
5682
|
*/
|
|
5799
5683
|
frame?: string | null;
|
|
5684
|
+
/**
|
|
5685
|
+
* Specifies the input image that will be used to constrain the video content at the specified frame position.
|
|
5686
|
+
* Must be a URL pointing to the image. The image must be accessible publicly.
|
|
5687
|
+
* This is the standard field name going forward; takes priority over input_image if both are set.
|
|
5688
|
+
* @maxLength 100000
|
|
5689
|
+
*/
|
|
5690
|
+
image?: string | null;
|
|
5800
5691
|
}
|
|
5801
5692
|
declare enum VideoModel {
|
|
5802
5693
|
UNKNOWN_VIDEO_MODEL = "UNKNOWN_VIDEO_MODEL",
|
|
@@ -5921,10 +5812,12 @@ declare enum V1ResponsesModel {
|
|
|
5921
5812
|
GPT_5_2_CODEX = "GPT_5_2_CODEX",
|
|
5922
5813
|
GPT_5_3_CODEX = "GPT_5_3_CODEX",
|
|
5923
5814
|
GPT_5_4_2026_03_05 = "GPT_5_4_2026_03_05",
|
|
5924
|
-
GPT_5_4_PRO_2026_03_05 = "GPT_5_4_PRO_2026_03_05"
|
|
5815
|
+
GPT_5_4_PRO_2026_03_05 = "GPT_5_4_PRO_2026_03_05",
|
|
5816
|
+
GPT_5_4_MINI_2026_03_17 = "GPT_5_4_MINI_2026_03_17",
|
|
5817
|
+
GPT_5_4_NANO_2026_03_17 = "GPT_5_4_NANO_2026_03_17"
|
|
5925
5818
|
}
|
|
5926
5819
|
/** @enumType */
|
|
5927
|
-
type V1ResponsesModelWithLiterals = V1ResponsesModel | 'MODEL_UNSPECIFIED' | 'GPT_5_2025_08_07_RESPONSES' | 'GPT_5_MINI_2025_08_07_RESPONSES' | 'GPT_5_NANO_2025_08_07_RESPONSES' | 'O3_PRO_2025_06_10' | 'O3_DEEP_RESEARCH_2025_06_26' | 'GPT_5_CODEX' | 'GPT_5_1_2025_11_13' | 'GPT_5_1_CODEX' | 'GPT_5_1_CODEX_MINI' | 'GPT_EXP_RESPONSES' | 'GPT_EXP_RESPONSES_2' | 'GPT_EXP_RESPONSES_3' | 'GPT_5_1_CODEX_MAX' | 'GPT_5_2_2025_12_11' | 'GPT_5_2_CODEX' | 'GPT_5_3_CODEX' | 'GPT_5_4_2026_03_05' | 'GPT_5_4_PRO_2026_03_05';
|
|
5820
|
+
type V1ResponsesModelWithLiterals = V1ResponsesModel | 'MODEL_UNSPECIFIED' | 'GPT_5_2025_08_07_RESPONSES' | 'GPT_5_MINI_2025_08_07_RESPONSES' | 'GPT_5_NANO_2025_08_07_RESPONSES' | 'O3_PRO_2025_06_10' | 'O3_DEEP_RESEARCH_2025_06_26' | 'GPT_5_CODEX' | 'GPT_5_1_2025_11_13' | 'GPT_5_1_CODEX' | 'GPT_5_1_CODEX_MINI' | 'GPT_EXP_RESPONSES' | 'GPT_EXP_RESPONSES_2' | 'GPT_EXP_RESPONSES_3' | 'GPT_5_1_CODEX_MAX' | 'GPT_5_2_2025_12_11' | 'GPT_5_2_CODEX' | 'GPT_5_3_CODEX' | 'GPT_5_4_2026_03_05' | 'GPT_5_4_PRO_2026_03_05' | 'GPT_5_4_MINI_2026_03_17' | 'GPT_5_4_NANO_2026_03_17';
|
|
5928
5821
|
interface V1ResponsesInputItem extends V1ResponsesInputItemItemOneOf {
|
|
5929
5822
|
/**
|
|
5930
5823
|
* A message input to the model with a role indicating instruction following hierarchy.
|
|
@@ -7980,10 +7873,6 @@ interface ContentGenerationSucceededEvent {
|
|
|
7980
7873
|
interface GenerateContentModelResponse extends GenerateContentModelResponseResponseOneOf {
|
|
7981
7874
|
/** OpenAI chat completion response. */
|
|
7982
7875
|
openAiChatCompletionResponse?: OpenaiproxyV1CreateChatCompletionResponse;
|
|
7983
|
-
/** Google bison text completion response. */
|
|
7984
|
-
googleTextBisonResponse?: TextBisonPredictResponse;
|
|
7985
|
-
/** Google bison chat completion response. */
|
|
7986
|
-
googleChatBisonResponse?: ChatBisonPredictResponse;
|
|
7987
7876
|
/** Azure OpenAI chat completion response. */
|
|
7988
7877
|
azureChatCompletionResponse?: CreateChatCompletionResponse;
|
|
7989
7878
|
/** Google Gemini generate content response. */
|
|
@@ -8059,10 +7948,6 @@ interface GenerateContentModelResponse extends GenerateContentModelResponseRespo
|
|
|
8059
7948
|
interface GenerateContentModelResponseResponseOneOf {
|
|
8060
7949
|
/** OpenAI chat completion response. */
|
|
8061
7950
|
openAiChatCompletionResponse?: OpenaiproxyV1CreateChatCompletionResponse;
|
|
8062
|
-
/** Google bison text completion response. */
|
|
8063
|
-
googleTextBisonResponse?: TextBisonPredictResponse;
|
|
8064
|
-
/** Google bison chat completion response. */
|
|
8065
|
-
googleChatBisonResponse?: ChatBisonPredictResponse;
|
|
8066
7951
|
/** Azure OpenAI chat completion response. */
|
|
8067
7952
|
azureChatCompletionResponse?: CreateChatCompletionResponse;
|
|
8068
7953
|
/** Google Gemini generate content response. */
|
|
@@ -8244,130 +8129,6 @@ interface OpenaiproxyV1CreateChatCompletionResponseTokenUsage {
|
|
|
8244
8129
|
/** Breakdown of tokens used in the completion. */
|
|
8245
8130
|
completionTokenDetails?: CreateChatCompletionResponseCompletionTokenDetails;
|
|
8246
8131
|
}
|
|
8247
|
-
interface TextBisonPredictResponse {
|
|
8248
|
-
/**
|
|
8249
|
-
* Response predictions
|
|
8250
|
-
* @maxSize 100
|
|
8251
|
-
*/
|
|
8252
|
-
predictions?: TextBisonPrediction[];
|
|
8253
|
-
/** Response metadata */
|
|
8254
|
-
metadata?: Metadata;
|
|
8255
|
-
/** Cost of the request in microcents */
|
|
8256
|
-
microcentsSpent?: string | null;
|
|
8257
|
-
}
|
|
8258
|
-
interface TextBisonPrediction {
|
|
8259
|
-
/**
|
|
8260
|
-
* The result generated from input text.
|
|
8261
|
-
* @maxLength 100000
|
|
8262
|
-
*/
|
|
8263
|
-
content?: string | null;
|
|
8264
|
-
/** Citation metadata */
|
|
8265
|
-
citationMetadata?: CitationMetadata;
|
|
8266
|
-
/** A collection of categories and their associated confidence scores. */
|
|
8267
|
-
safetyAttributes?: SafetyAttribute;
|
|
8268
|
-
}
|
|
8269
|
-
interface CitationMetadata {
|
|
8270
|
-
/**
|
|
8271
|
-
* Citations array
|
|
8272
|
-
* @maxSize 1000
|
|
8273
|
-
*/
|
|
8274
|
-
citations?: V1Citation[];
|
|
8275
|
-
}
|
|
8276
|
-
interface V1Citation {
|
|
8277
|
-
/** Index in the prediction output where the citation starts (inclusive). Must be >= 0 and < end_index. */
|
|
8278
|
-
startIndex?: number | null;
|
|
8279
|
-
/** Index in the prediction output where the citation ends (exclusive). Must be > start_index and < len(output). */
|
|
8280
|
-
endIndex?: number | null;
|
|
8281
|
-
/**
|
|
8282
|
-
* URL associated with this citation. If present, this URL links to the webpage of the source of this citation.
|
|
8283
|
-
* Possible URLs include news websites, GitHub repos, etc.
|
|
8284
|
-
* @maxLength 1000
|
|
8285
|
-
*/
|
|
8286
|
-
url?: string | null;
|
|
8287
|
-
/**
|
|
8288
|
-
* Title associated with this citation. If present, it refers to the title of the source of this citation.
|
|
8289
|
-
* Possible titles include news titles, book titles, etc.
|
|
8290
|
-
* @maxLength 1000
|
|
8291
|
-
*/
|
|
8292
|
-
title?: string | null;
|
|
8293
|
-
/**
|
|
8294
|
-
* License associated with this recitation. If present, it refers to the license of the source of this citation.
|
|
8295
|
-
* Possible licenses include code licenses, e.g., mit license.
|
|
8296
|
-
* @maxLength 100
|
|
8297
|
-
*/
|
|
8298
|
-
license?: string | null;
|
|
8299
|
-
/**
|
|
8300
|
-
* Publication date associated with this citation. If present, it refers to the date at which the source of this citation was published.
|
|
8301
|
-
* Possible formats are YYYY, YYYY-MM, YYYY-MM-DD.
|
|
8302
|
-
* @maxLength 100
|
|
8303
|
-
*/
|
|
8304
|
-
publicationDate?: string | null;
|
|
8305
|
-
}
|
|
8306
|
-
interface SafetyAttribute {
|
|
8307
|
-
/**
|
|
8308
|
-
* The display names of Safety Attribute categories associated with the generated content. Order matches the Scores.
|
|
8309
|
-
* @maxSize 100
|
|
8310
|
-
* @maxLength 100
|
|
8311
|
-
*/
|
|
8312
|
-
categories?: string[] | null;
|
|
8313
|
-
/** A flag indicating if the model's input or output was blocked. */
|
|
8314
|
-
blocked?: boolean | null;
|
|
8315
|
-
/**
|
|
8316
|
-
* The confidence scores of the each category, higher value means higher confidence.
|
|
8317
|
-
* @maxSize 100
|
|
8318
|
-
*/
|
|
8319
|
-
scores?: number[] | null;
|
|
8320
|
-
/**
|
|
8321
|
-
* An error code that identifies why the input or output was blocked.
|
|
8322
|
-
* For a list of error codes, see https://cloud.google.com/vertex-ai/docs/generative-ai/learn/responsible-ai#safety_filters_and_attributes.
|
|
8323
|
-
* @maxSize 100
|
|
8324
|
-
*/
|
|
8325
|
-
errors?: string[] | null;
|
|
8326
|
-
}
|
|
8327
|
-
interface Metadata {
|
|
8328
|
-
/** TokenMetadata object */
|
|
8329
|
-
tokenMetadata?: TokenMetadata;
|
|
8330
|
-
}
|
|
8331
|
-
interface TokenMetadata {
|
|
8332
|
-
/** Number of input tokens. This is the total number of tokens across all messages, examples, and context. */
|
|
8333
|
-
inputTokenCount?: TokenCount;
|
|
8334
|
-
/** Number of output tokens. This is the total number of tokens in content across all candidates in the response. */
|
|
8335
|
-
outputTokenCount?: TokenCount;
|
|
8336
|
-
}
|
|
8337
|
-
interface TokenCount {
|
|
8338
|
-
/** Number of tokens */
|
|
8339
|
-
totalTokens?: number | null;
|
|
8340
|
-
/** Number of billable characters */
|
|
8341
|
-
totalBillableCharacters?: number | null;
|
|
8342
|
-
}
|
|
8343
|
-
interface ChatBisonPredictResponse {
|
|
8344
|
-
/**
|
|
8345
|
-
* Response predictions
|
|
8346
|
-
* @maxSize 100
|
|
8347
|
-
*/
|
|
8348
|
-
predictions?: ChatBisonPrediction[];
|
|
8349
|
-
/** Response metadata */
|
|
8350
|
-
metadata?: Metadata;
|
|
8351
|
-
/** Cost of the request in microcents */
|
|
8352
|
-
microcentsSpent?: string | null;
|
|
8353
|
-
}
|
|
8354
|
-
interface ChatBisonPrediction {
|
|
8355
|
-
/**
|
|
8356
|
-
* The chat result generated from given message.
|
|
8357
|
-
* @maxSize 100
|
|
8358
|
-
*/
|
|
8359
|
-
candidates?: ChatMessage[];
|
|
8360
|
-
/**
|
|
8361
|
-
* Citation metadata
|
|
8362
|
-
* @maxSize 100
|
|
8363
|
-
*/
|
|
8364
|
-
citationMetadata?: CitationMetadata[];
|
|
8365
|
-
/**
|
|
8366
|
-
* An array of collections of categories and their associated confidence scores. 1-1 mapping to candidates.
|
|
8367
|
-
* @maxSize 100
|
|
8368
|
-
*/
|
|
8369
|
-
safetyAttributes?: SafetyAttribute[];
|
|
8370
|
-
}
|
|
8371
8132
|
interface CreateChatCompletionResponse {
|
|
8372
8133
|
/**
|
|
8373
8134
|
* A unique identifier for the chat completion.
|
|
@@ -10266,10 +10027,6 @@ interface GenerateTextByPromptResponse {
|
|
|
10266
10027
|
interface ModelResponse extends ModelResponseResponseOneOf {
|
|
10267
10028
|
/** OpenAI chat completion response. */
|
|
10268
10029
|
openAiChatCompletionResponse?: OpenaiproxyV1CreateChatCompletionResponse;
|
|
10269
|
-
/** Google bison text completion response. */
|
|
10270
|
-
googleTextBisonResponse?: TextBisonPredictResponse;
|
|
10271
|
-
/** Google bison chat completion response. */
|
|
10272
|
-
googleChatBisonResponse?: ChatBisonPredictResponse;
|
|
10273
10030
|
/** Azure OpenAI chat completion response. */
|
|
10274
10031
|
azureChatCompletionResponse?: CreateChatCompletionResponse;
|
|
10275
10032
|
/** Google Gemini generate content response. */
|
|
@@ -10307,10 +10064,6 @@ interface ModelResponse extends ModelResponseResponseOneOf {
|
|
|
10307
10064
|
interface ModelResponseResponseOneOf {
|
|
10308
10065
|
/** OpenAI chat completion response. */
|
|
10309
10066
|
openAiChatCompletionResponse?: OpenaiproxyV1CreateChatCompletionResponse;
|
|
10310
|
-
/** Google bison text completion response. */
|
|
10311
|
-
googleTextBisonResponse?: TextBisonPredictResponse;
|
|
10312
|
-
/** Google bison chat completion response. */
|
|
10313
|
-
googleChatBisonResponse?: ChatBisonPredictResponse;
|
|
10314
10067
|
/** Azure OpenAI chat completion response. */
|
|
10315
10068
|
azureChatCompletionResponse?: CreateChatCompletionResponse;
|
|
10316
10069
|
/** Google Gemini generate content response. */
|
|
@@ -13692,10 +13445,6 @@ interface PublishPromptOptions {
|
|
|
13692
13445
|
prompt: {
|
|
13693
13446
|
/** OpenAI chat completion request. */
|
|
13694
13447
|
openAiChatCompletionRequest?: OpenaiproxyV1CreateChatCompletionRequest;
|
|
13695
|
-
/** Google bison text completion request. */
|
|
13696
|
-
googleTextBisonRequest?: TextBisonPredictRequest;
|
|
13697
|
-
/** Google bison chat completion request. */
|
|
13698
|
-
googleChatBisonRequest?: ChatBisonPredictRequest;
|
|
13699
13448
|
/** Azure OpenAI chat completion request. */
|
|
13700
13449
|
azureChatCompletionRequest?: CreateChatCompletionRequest;
|
|
13701
13450
|
/** Google Gemini generate content request. */
|
|
@@ -13863,4 +13612,4 @@ interface PollImageGenerationResultOptionsRequestOneOf {
|
|
|
13863
13612
|
bytedanceGetContentTaskRequest?: GetContentTaskRequest;
|
|
13864
13613
|
}
|
|
13865
13614
|
|
|
13866
|
-
export { type AccountInfo, type Action, type ActionEvent, type AlignmentInfoInChunk, type AnthropicClaudeMessage, type AnthropicMessage, AnthropicModel, type AnthropicModelWithLiterals, type AnthropicStreamChunk, type AnthropicStreamChunkContentOneOf, type AnthropicStreamChunkMessageDelta, type AnthropicV1ImageUrl, type ApplicationBudgetInfo, type AsyncGenerationConfig, type Background, type BashTool, type Blob, type BuiltInTool, type CacheControl, CacheControlType, type CacheControlTypeWithLiterals, type Candidate, type CandidateCitationMetadata, type CandidateCitationMetadataCitation, type CandidateContent, type CandidateContentPart, type CharLocationCitation, ChatBisonModel, type ChatBisonModelWithLiterals, type ChatBisonPredictRequest, type ChatBisonPredictResponse, type ChatBisonPrediction, type ChatCompletionChunk, type ChatCompletionChunkChunkChoice, type ChatCompletionChunkChunkChoiceChunkDelta, type ChatCompletionMessage, type ChatCompletionMessageContentPart, type ChatCompletionMessageContentPartContentValueOneOf, type ChatCompletionMessageFunctionWithArgs, type ChatCompletionMessageImageUrlContent, ChatCompletionMessageMessageRole, type ChatCompletionMessageMessageRoleWithLiterals, type ChatCompletionMessageToolCall, ChatCompletionModel, type ChatCompletionModelWithLiterals, type ChatInstance, type ChatMessage, type Choice, type ChunkChoice, type ChunkChoiceChunkDelta, type ChunkDelta, type Citation, type CitationMetadata, type CitationTypeOneOf, type CitationsEnabled, ClaudeModel, type ClaudeModelWithLiterals, ClipGuidancePreset, type ClipGuidancePresetWithLiterals, type CodeExecution, type CodeExecutionResult, type CodeExecutionTool, type CodeExecutionToolResult, type CodeExecutionToolResultContentOneOf, type CodeExecutionToolResultError, type CommonContentTaskResponse, type CompletionTokenDetails, type ComputerUse, type ComputerUseTool, type Container, type ContainerUpload, type Content, type ContentBlock, type ContentBlockDelta, type ContentBlockDeltaDeltaOneOf, type ContentBlockLocationCitation, type ContentBlockTypeOneOf, type ContentData, type ContentGenerationFailedEvent, type ContentGenerationRequestedEvent, type ContentGenerationSucceededEvent, type ContentItem, type ContentPart, type ContentPartContentValueOneOf, ContentRole, type ContentRoleWithLiterals, type ConverseContentBlock, type ConverseContentBlockContentOneOf, type ConverseInferenceConfig, type ConverseInputSchema, type ConverseMessage, ConverseModel, type ConverseModelWithLiterals, type ConversePerformanceConfig, type ConverseReasoningContent, type ConverseTool, type ConverseToolResult, type ConverseToolResultContent, type ConverseToolResultContentContentOneOf, type ConverseToolUse, type CreateChatCompletionRequest, type CreateChatCompletionRequestFunctionCallOneOf, type CreateChatCompletionRequestFunctionSignature, type CreateChatCompletionRequestResponseFormat, type CreateChatCompletionRequestTool, type CreateChatCompletionResponse, type CreateChatCompletionResponseChoice, type CreateChatCompletionResponseCompletionTokenDetails, type CreateChatCompletionResponsePromptTokenDetails, type CreateChatCompletionResponseTokenUsage, type CreateContentTaskRequest, type CreateContentTaskResponse, type CreateEmbeddingsRequest, type CreateEmbeddingsResponse, type CreateEmbeddingsResponseEmbeddingUsage, type CreateImageOpenAiRequest, type CreateImageOpenAiResponse, type CreateImageRequest, type CreateImageResponse, type CreateModerationRequest, type CreateModerationResponse, CreatePredictionModel, type CreatePredictionModelWithLiterals, type CreatePredictionRequest, type CreatePredictionRequestInputOneOf, type CreatePredictionResponse, type CreatePredictionResponseTokenUsage, type CreateSpeechRequest, type CreateSpeechResponse, type CreateTranscriptionRequest, CreateTranscriptionRequestResponseFormat, type CreateTranscriptionRequestResponseFormatWithLiterals, type CreateTranscriptionResponse, type CreateVideoRequest, type CreateVideoResponse, type CustomTool, type DatalabOcr, type DatalabOcrOutput, type DocumentContent, type DocumentSource, type DomainEvent, type DomainEventBodyOneOf, type DraftTask, type DynamicRequestConfig, type DynamicRetrievalConfig, DynamicRetrievalConfigMode, type DynamicRetrievalConfigModeWithLiterals, EditAction, type EditActionWithLiterals, type EditImageInput, EditImageModel, type EditImageModelWithLiterals, type EditImageOpenAiRequest, type EditImageOpenAiResponse, type EditImageOptions, type EditImageOptionsRequestOneOf, type EditImageRequest, type EditImageResponse, type EditImageWithPromptRequest, EditImageWithPromptRequestModel, type EditImageWithPromptRequestModelWithLiterals, type EditImageWithPromptResponse, ElevenLabsTextToSpeechModel, type ElevenLabsTextToSpeechModelWithLiterals, EmbeddingEncodingFormat, type EmbeddingEncodingFormatWithLiterals, type EmbeddingInfo, type EmbeddingInfoEmbeddingResultOneOf, type EmbeddingInstance, EmbeddingModel, type EmbeddingModelWithLiterals, type EmbeddingPrediction, type EmbeddingUsage, type EntityCreatedEvent, type EntityDeletedEvent, EntityType, type EntityTypeWithLiterals, type EntityUpdatedEvent, Environment, type EnvironmentWithLiterals, type ErrorInfo, type Example, type ExecutableCode, type Expand, type ExperimentalPromptConfig, type Export, type ExtractFromImageMetrics, ExtractFromImageModel, type ExtractFromImageModelWithLiterals, type ExtractFromImageRequest, type ExtractFromImageRequestInputOneOf, type ExtractFromImageResponse, type ExtractFromImageResponseOutputOneOf, type ExtractFromImageResponseTokenUsage, type ExtractFromImageUrls, type FallbackPromptConfig, type FallbackProperties, type FileContent, type FileInput, type FineTuningSpec, FinishReason, type FinishReasonWithLiterals, type Fireworks_proxyV1ChatCompletionMessage, type Fireworks_proxyV1ChatCompletionMessageContentPart, type Fireworks_proxyV1ChatCompletionMessageContentPartContentValueOneOf, type Fireworks_proxyV1ChatCompletionMessageImageUrlContent, Fireworks_proxyV1ChatCompletionMessageMessageRole, type Fireworks_proxyV1ChatCompletionMessageMessageRoleWithLiterals, type FloatEmbedding, type FluxDevControlnet, type FluxPulid, type FrameImage, type FunctionCall, type FunctionCallingConfig, type FunctionDeclaration, type FunctionResponse, type FunctionResponseBlob, type FunctionResponsePart, type FunctionResponsePartDataOneOf, type FunctionSignature, type FunctionWithArgs, type GatewayContentBlock, type GatewayContentBlockTypeOneOf, type GatewayMessageDefinition, GatewayMessageDefinitionRole, type GatewayMessageDefinitionRoleWithLiterals, type GatewayToolDefinition, type GatewayToolDefinitionCustomTool, type GatewayToolDefinitionToolOneOf, GenerateAnImageModel, type GenerateAnImageModelWithLiterals, type GenerateAnImageRequest, type GenerateAnImageResponse, type GenerateAudioOptions, type GenerateAudioOptionsAudioRequestOneOf, type GenerateAudioRequest, type GenerateAudioRequestAudioRequestOneOf, type GenerateAudioResponse, type GenerateAudioResponseAudioResponseOneOf, type GenerateAudioStreamedOptions, type GenerateAudioStreamedOptionsAudioRequestOneOf, type GenerateContentByProjectOptions, type GenerateContentByProjectRequest, type GenerateContentByProjectResponse, type GenerateContentByPromptObjectOptions, type GenerateContentByPromptObjectRequest, type GenerateContentByPromptObjectResponse, type GenerateContentByPromptOptions, type GenerateContentByPromptRequest, type GenerateContentByPromptResponse, type GenerateContentModelResponse, type GenerateContentModelResponseResponseOneOf, type GenerateContentRequest, type GenerateContentResponse, type GenerateCoreRequest, GenerateCoreRequestStylePreset, type GenerateCoreRequestStylePresetWithLiterals, type GenerateCoreResponse, type GenerateEmbeddingOptions, type GenerateEmbeddingOptionsEmbeddingRequestOneOf, type GenerateEmbeddingsRequest, type GenerateEmbeddingsRequestEmbeddingRequestOneOf, type GenerateEmbeddingsResponse, type GenerateEmbeddingsResponseEmbeddingResponseOneOf, type GenerateImageByProjectOptions, type GenerateImageByProjectRequest, type GenerateImageByProjectResponse, type GenerateImageByPromptObjectOptions, type GenerateImageByPromptObjectRequest, type GenerateImageByPromptObjectResponse, type GenerateImageByPromptOptions, type GenerateImageByPromptRequest, type GenerateImageByPromptResponse, GenerateImageMlPlatformModel, type GenerateImageMlPlatformModelWithLiterals, type GenerateImageMlPlatformRequest, type GenerateImageMlPlatformRequestInputOneOf, type GenerateImageMlPlatformResponse, type GenerateImageRequest, type GenerateImageResponse, type GenerateModerationOptions, type GenerateModerationOptionsModerationRequestOneOf, type GenerateModerationRequest, type GenerateModerationRequestModerationRequestOneOf, type GenerateModerationResponse, type GenerateModerationResponseModerationResponseOneOf, type GenerateStableDiffusionRequest, GenerateStableDiffusionRequestOutputFormat, type GenerateStableDiffusionRequestOutputFormatWithLiterals, type GenerateStableDiffusionResponse, type GenerateTextByProjectOptions, type GenerateTextByProjectRequest, type GenerateTextByProjectResponse, type GenerateTextByProjectStreamedOptions, type GenerateTextByPromptObjectOptions, type GenerateTextByPromptObjectRequest, type GenerateTextByPromptObjectResponse, type GenerateTextByPromptObjectStreamedOptions, type GenerateTextByPromptOptions, type GenerateTextByPromptRequest, type GenerateTextByPromptResponse, type GenerateTextByPromptStreamedOptions, type GenerateTranscriptionOptions, type GenerateTranscriptionOptionsTranscriptionRequestOneOf, type GenerateTranscriptionRequest, type GenerateTranscriptionRequestTranscriptionRequestOneOf, type GenerateTranscriptionResponse, type GenerateTranscriptionResponseTranscriptionResponseOneOf, type GenerateVideoInstance, type GenerateVideoParameters, type GenerateVideoRequest, type GenerateVideoResponse, type GeneratedAudioChunk, type GeneratedAudioChunkAudioChunkOneOf, type GeneratedContent, type GeneratedTextChunk, type GeneratedTextChunkModelChunkOneOf, type GeneratedVideo, type GenerationConfig, GenerationMode, type GenerationModeWithLiterals, type GenerationRequestedEvent, type GenerationThinkingConfig, type GetApplicationUsageRequest, type GetApplicationUsageResponse, type GetContentTaskRequest, type GetContentTaskResponse, type GetEmbeddingRequest, type GetEmbeddingResponse, type GetProjectRequest, type GetProjectResponse, type GetPromptOptions, type GetPromptRequest, type GetPromptResponse, type GetResultRequest, type GetResultResponse, type GetStatusRequest, type GetStatusResponse, type GetTaskResultRequest, type GetTaskResultResponse, type GetTaskResultResponseResponseOneOf, type GetVideoResultRequest, type GetVideoResultResponse, type GoogleSearch, type GoogleSearchRetrieval, type GoogleproxyV1AnthropicStreamChunk, type GoogleproxyV1AnthropicStreamChunkContentOneOf, type GoogleproxyV1CacheControl, type GoogleproxyV1ChatCompletionMessage, type GoogleproxyV1ContentBlock, type GoogleproxyV1ContentBlockDelta, type GoogleproxyV1ContentBlockDeltaDeltaOneOf, type GoogleproxyV1ContentBlockTypeOneOf, type GoogleproxyV1ImageUrl, type GoogleproxyV1InputSchema, type GoogleproxyV1McpServer, GoogleproxyV1McpServerType, type GoogleproxyV1McpServerTypeWithLiterals, GoogleproxyV1Model, type GoogleproxyV1ModelWithLiterals, type GoogleproxyV1RedactedThinking, GoogleproxyV1ResponseTypeType, type GoogleproxyV1ResponseTypeTypeWithLiterals, type GoogleproxyV1Text, type GoogleproxyV1Thinking, type GoogleproxyV1ThinkingConfig, type GoogleproxyV1Tool, type GoogleproxyV1ToolChoice, GoogleproxyV1ToolChoiceType, type GoogleproxyV1ToolChoiceTypeWithLiterals, type GoogleproxyV1ToolResult, type GoogleproxyV1ToolUse, type GoogleproxyV1Usage, type GroundingChunk, type GroundingChunkChunkTypeOneOf, type GroundingMetadata, type GroundingSupport, type Guidance, HarmCategory, type HarmCategoryWithLiterals, HarmProbability, type HarmProbabilityWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type ImageConfig, ImageCoreModel, type ImageCoreModelWithLiterals, type ImageData, ImageEditingModel, type ImageEditingModelWithLiterals, type ImageEditingRequest, type ImageEditingResponse, type ImageError, type ImageGenerationFailedEvent, type ImageGenerationRequestedEvent, type ImageGenerationSucceededEvent, type ImageInput, ImageMediaTypeMediaType, type ImageMediaTypeMediaTypeWithLiterals, ImageModel, type ImageModelResponse, type ImageModelResponseResponseOneOf, type ImageModelWithLiterals, type ImageObject, type ImageOutputOptions, ImageQuality, type ImageQualityWithLiterals, ImageSize, type ImageSizeWithLiterals, ImageStableDiffusionModel, type ImageStableDiffusionModelWithLiterals, ImageStyle, type ImageStyleWithLiterals, type ImageUrl, type ImageUrlContent, type ImageUrlInput, type ImageUsage, ImagenModel, type ImagenModelWithLiterals, type IncompleteDetails, type InputSchema, type Inputs, type Instance, type InvokeAnthropicClaudeModelRequest, type InvokeAnthropicClaudeModelRequestTool, type InvokeAnthropicClaudeModelResponse, type InvokeAnthropicModelRequest, type InvokeAnthropicModelResponse, type InvokeChatCompletionRequest, type InvokeChatCompletionRequestResponseFormat, type InvokeChatCompletionRequestResponseFormatFormatDetailsOneOf, type InvokeChatCompletionResponse, type InvokeChatCompletionResponseChoice, type InvokeChatCompletionResponseUsage, type InvokeConverseRequest, type InvokeConverseResponse, type InvokeConverseResponseTokenUsage, type InvokeCustomOpenAiModelRequest, type InvokeCustomOpenAiModelRequestFunctionCallOneOf, type InvokeCustomOpenAiModelRequestFunctionSignature, type InvokeCustomOpenAiModelRequestResponseFormat, type InvokeCustomOpenAiModelRequestTool, type InvokeCustomOpenAiModelResponse, type InvokeCustomOpenAiModelResponseChoice, type InvokeCustomOpenAiModelResponseCompletionTokenDetails, type InvokeCustomOpenAiModelResponsePromptTokenDetails, type InvokeCustomOpenAiModelResponseTokenUsage, type InvokeLlamaModelRequest, type InvokeLlamaModelResponse, type InvokeMlPlatformLlamaModelRequest, type InvokeMlPlatformLlamaModelResponse, type InvokeMlPlatformOpenAIChatCompletionRawRequest, type InvokeMlPlatformOpenAIChatCompletionRawResponse, type JsonSchema, Language, type LanguageWithLiterals, type Lighting, LlamaModel, type LlamaModelWithLiterals, type LoraModelSelect, type LucatacoFlorence2Large, type Margin, type McpServer, type McpServerToolConfiguration, McpServerType, type McpServerTypeWithLiterals, type McpToolUse, type MediaContent, type MediaResolution, MediaResolutionLevel, type MediaResolutionLevelWithLiterals, MediaType, type MediaTypeWithLiterals, type MessageDelta, type MessageEnvelope, MessageRole, MessageRoleRole, type MessageRoleRoleWithLiterals, type MessageRoleWithLiterals, type Metadata, type Metrics, Modality, type ModalityTokenCount, type ModalityWithLiterals, Mode, type ModeWithLiterals, Model, type ModelResponse, type ModelResponseResponseOneOf, type ModelWithLiterals, type ModerationResult, type MultiModalInput, type MultiModalInputContentValueOneOf, OpenAiImageModel, type OpenAiImageModelWithLiterals, type OpenAiImageTokenDetails, type OpenAiResponsesRequest, type OpenAiResponsesResponse, type OpenAiResponsesResponseIncompleteDetails, type OpenaiproxyV1ChatCompletionChunk, type OpenaiproxyV1ChatCompletionMessage, type OpenaiproxyV1ChatCompletionMessageContentPart, type OpenaiproxyV1ChatCompletionMessageContentPartContentValueOneOf, type OpenaiproxyV1ChatCompletionMessageImageUrlContent, OpenaiproxyV1ChatCompletionMessageMessageRole, type OpenaiproxyV1ChatCompletionMessageMessageRoleWithLiterals, type OpenaiproxyV1CreateChatCompletionRequest, type OpenaiproxyV1CreateChatCompletionRequestFunctionCallOneOf, type OpenaiproxyV1CreateChatCompletionRequestResponseFormat, type OpenaiproxyV1CreateChatCompletionResponse, type OpenaiproxyV1CreateChatCompletionResponseChoice, type OpenaiproxyV1CreateChatCompletionResponseTokenUsage, OpenaiproxyV1EmbeddingModel, type OpenaiproxyV1EmbeddingModelWithLiterals, OpenaiproxyV1Model, type OpenaiproxyV1ModelWithLiterals, type OptimizePromptOptions, OutageStatus, type OutageStatusWithLiterals, Outcome, type OutcomeWithLiterals, type OutpaintDirection, type Output, type OutputAnnotation, type OutputAnnotationAnnotationTypeOneOf, type OutputContent, OutputFormat, type OutputFormatWithLiterals, type OutputOptions, type Padding, type PageLocationCitation, type Parameters, type PerceptronIsaac01, type PerplexityImageDescriptor, type PerplexityMessage, PerplexityMessageMessageRole, type PerplexityMessageMessageRoleWithLiterals, PerplexityModel, type PerplexityModelWithLiterals, PersonGeneration, type PersonGenerationWithLiterals, type PollImageGenerationResultOptions, type PollImageGenerationResultOptionsRequestOneOf, type PollImageGenerationResultRequest, type PollImageGenerationResultRequestRequestOneOf, type PollImageGenerationResultResponse, type PollImageGenerationResultResponseResponseOneOf, type PredictParameters, type Prediction, type PredictionMetrics, type PredictionUrls, type Project, type ProjectConfigChangedDomainEvent, type Prompt, type PromptModelRequestOneOf, type PromptTokenDetails, type PronunciationDictionaryLocator, type PrunaaiZImageTurbo, type PublicationDate, type PublishProjectOptions, type PublishProjectRequest, type PublishProjectResponse, type PublishPromptOptions, type PublishPromptRequest, type PublishPromptResponse, type QwenImageLayered, type ReasoningText, type Recraft_proxyV1EditImageRequest, type Recraft_proxyV1EditImageResponse, type RedactedThinking, type RemoveBackgroundRequest, type RemoveBackgroundResponse, type RequestMetadata, type ResponseFormat, type ResponseMetadata, ResponseType, ResponseTypeType, type ResponseTypeTypeWithLiterals, type ResponseTypeWithLiterals, type ResponsesCodeInterpreter, type ResponsesCodeInterpreterContainer, type ResponsesCodeInterpreterContainerAuto, type ResponsesCodeInterpreterContainerContainerTypeOneOf, type ResponsesCodeInterpreterImageOutput, type ResponsesCodeInterpreterLogsOutput, type ResponsesCodeInterpreterOutput, type ResponsesCodeInterpreterOutputOutputTypeOneOf, type ResponsesCodeInterpreterToolCall, type ResponsesFunction, type ResponsesFunctionToolCall, type ResponsesFunctionToolCallOutput, type ResponsesInputItem, type ResponsesInputItemItemOneOf, type ResponsesInputMessage, type ResponsesInputMessageContent, type ResponsesInputMessageContentContentValueOneOf, type ResponsesInputMessageContentFileInput, type ResponsesInputMessageContentImageInput, ResponsesInputMessageResponsesMessageRole, type ResponsesInputMessageResponsesMessageRoleWithLiterals, type ResponsesInputTokensDetails, ResponsesMessageRole, type ResponsesMessageRoleWithLiterals, ResponsesModel, type ResponsesModelWithLiterals, type ResponsesOutput, type ResponsesOutputMessage, type ResponsesOutputMessageOutputContent, type ResponsesOutputOutputOneOf, type ResponsesOutputTokensDetails, type ResponsesReasoning, type ResponsesReasoningContent, type ResponsesReasoningOutput, type ResponsesReasoningSummaryContent, type ResponsesTextFormat, type ResponsesTextFormatFormatOneOf, type ResponsesTextFormatJsonSchema, type ResponsesTokenUsage, type ResponsesTool, type ResponsesToolChoice, type ResponsesToolToolTypeOneOf, type ResponsesWebSearch, type ResponsesWebSearchToolCall, type ResponsesWebSearchToolCallAction, type ResponsesWebSearchUserLocation, type RestoreInfo, type ResultObject, type RetrievalMetadata, type RetrievedContext, type ReveEdit, Role, type RoleWithLiterals, type SafetyAttribute, type SafetyAttributes, type SafetyRating, type SafetySetting, Sampler, type SamplerWithLiterals, type SearchEntryPoint, type SearchResultLocationCitation, type Segment, type Segmentation, type SequentialImageGenerationOptions, type ServerToolUse, type Shadow, type SimpleContentBlock, type SimpleContentBlockTypeOneOf, type SpeechChunk, SpeechModel, type SpeechModelWithLiterals, type SpiGenerationConfig, type Statistics, StylePreset, type StylePresetWithLiterals, type SystemContentBlock, type SystemInstruction, type TaskContent, type TaskError, TaskInput, type TaskInputWithLiterals, TaskType, type TaskTypeWithLiterals, type TaskUsage, type Text, TextBisonModel, type TextBisonModelWithLiterals, type TextBisonPredictRequest, type TextBisonPredictResponse, type TextBisonPrediction, type TextContent, type TextEditorTool, type TextEmbeddingInstance, type TextEmbeddingParameters, type TextGenerationFailedEvent, type TextGenerationSucceededEvent, type TextInstance, type TextPrompt, type TextRemoval, type TextToImageRequest, TextToImageRequestModel, type TextToImageRequestModelWithLiterals, TextToImageRequestStylePreset, type TextToImageRequestStylePresetWithLiterals, type TextToImageResponse, type TextToImageTaskResult, type TextToSpeechChunk, type TextToSpeechRequest, type Thinking, type ThinkingConfig, type ThinkingTextContent, Threshold, type ThresholdWithLiterals, type TimestampGranularities, TimestampGranularity, type TimestampGranularityWithLiterals, type TokenCount, type TokenMetadata, type TokenUsage, type Tool, type ToolCall, type ToolChoice, ToolChoiceType, type ToolChoiceTypeWithLiterals, type ToolConfig, type ToolConfiguration, type ToolResult, type ToolResultContent, type ToolResultContentBlock, type ToolResultContentBlockTypeOneOf, type ToolResultSearchResult, type ToolSpecification, type ToolUse, type ToolUseContent, TranscriptionModel, type TranscriptionModelWithLiterals, Type, type TypeWithLiterals, type UrlCitation, type Usage, type UsageCacheCreation, type UsageMetadata, type UsageServerToolUse, type UserLocation, type UserPerApplicationBudgetInfo, type UserRequestInfo, type V1AnthropicClaudeMessage, type V1AnthropicStreamChunk, type V1AnthropicStreamChunkContentOneOf, type V1AnthropicStreamChunkMessageDelta, type V1CacheControl, V1CacheControlType, type V1CacheControlTypeWithLiterals, type V1ChatCompletionChunk, type V1ChatCompletionChunkChunkChoice, type V1ChatCompletionMessage, type V1ChatCompletionMessageContentPart, type V1ChatCompletionMessageContentPartContentValueOneOf, type V1ChatCompletionMessageFunctionWithArgs, type V1ChatCompletionMessageImageUrlContent, V1ChatCompletionMessageMessageRole, type V1ChatCompletionMessageMessageRoleWithLiterals, type V1ChatCompletionMessageToolCall, type V1Citation, type V1CodeExecutionResult, type V1ContentBlock, type V1ContentBlockDelta, type V1ContentBlockDeltaDeltaOneOf, type V1ContentBlockTypeOneOf, type V1ContentPart, type V1CreateChatCompletionRequest, type V1CreateChatCompletionRequestResponseFormat, type V1CreateChatCompletionRequestTool, type V1CreateChatCompletionResponse, type V1CreateChatCompletionResponseChoice, type V1CreateChatCompletionResponseTokenUsage, type V1CreateEmbeddingsRequest, type V1CreateEmbeddingsResponse, V1EditImageModel, type V1EditImageModelWithLiterals, type V1EditImageRequest, type V1EditImageResponse, V1EmbeddingEncodingFormat, type V1EmbeddingEncodingFormatWithLiterals, type V1EmbeddingInfo, type V1EmbeddingInfoEmbeddingResultOneOf, V1EmbeddingModel, type V1EmbeddingModelWithLiterals, type V1FineTuningSpec, type V1FloatEmbedding, type V1FluxPulid, type V1GenerateImageRequest, type V1GenerateImageResponse, type V1GetResultRequest, type V1GetResultResponse, type V1ImageInput, V1ImageMediaTypeMediaType, type V1ImageMediaTypeMediaTypeWithLiterals, V1ImageModel, type V1ImageModelWithLiterals, type V1ImageObject, type V1ImageUrl, type V1ImageUsage, type V1InputSchema, type V1InvokeAnthropicClaudeModelRequest, type V1InvokeAnthropicClaudeModelResponse, type V1McpServer, type V1McpServerToolConfiguration, V1McpServerType, type V1McpServerTypeWithLiterals, V1MessageRoleRole, type V1MessageRoleRoleWithLiterals, V1Model, type V1ModelWithLiterals, type V1OpenAiResponsesRequest, type V1OpenAiResponsesResponse, type V1OutputAnnotation, type V1OutputAnnotationAnnotationTypeOneOf, type V1RedactedThinking, V1ResponseTypeType, type V1ResponseTypeTypeWithLiterals, type V1ResponsesCodeInterpreter, type V1ResponsesCodeInterpreterContainer, type V1ResponsesCodeInterpreterContainerAuto, type V1ResponsesCodeInterpreterContainerContainerTypeOneOf, type V1ResponsesCodeInterpreterImageOutput, type V1ResponsesCodeInterpreterLogsOutput, type V1ResponsesCodeInterpreterOutput, type V1ResponsesCodeInterpreterOutputOutputTypeOneOf, type V1ResponsesCodeInterpreterToolCall, type V1ResponsesFunction, type V1ResponsesFunctionToolCall, type V1ResponsesFunctionToolCallOutput, type V1ResponsesInputItem, type V1ResponsesInputItemItemOneOf, type V1ResponsesInputMessage, type V1ResponsesInputMessageContent, type V1ResponsesInputMessageContentContentValueOneOf, type V1ResponsesInputTokensDetails, V1ResponsesModel, type V1ResponsesModelWithLiterals, type V1ResponsesOutput, type V1ResponsesOutputMessage, type V1ResponsesOutputOutputOneOf, type V1ResponsesOutputTokensDetails, type V1ResponsesReasoning, type V1ResponsesReasoningContent, type V1ResponsesReasoningOutput, type V1ResponsesReasoningSummaryContent, type V1ResponsesTextFormat, type V1ResponsesTextFormatFormatOneOf, type V1ResponsesTokenUsage, type V1ResponsesTool, type V1ResponsesToolChoice, type V1ResponsesToolToolTypeOneOf, type V1ResponsesWebSearch, type V1ResponsesWebSearchToolCall, type V1Segment, type V1SimpleContentBlock, type V1SimpleContentBlockTypeOneOf, type V1Text, type V1TextToImageRequest, type V1TextToImageResponse, type V1Thinking, type V1ThinkingConfig, type V1TokenUsage, type V1Tool, type V1ToolChoice, V1ToolChoiceType, type V1ToolChoiceTypeWithLiterals, type V1ToolConfig, type V1ToolKindOneOf, type V1ToolResult, type V1ToolUse, type V1UrlCitation, type V1Usage, V1VideoModel, type V1VideoModelWithLiterals, VideoGenModel, type VideoGenModelWithLiterals, type VideoInferenceRequest, type VideoInferenceResponse, type VideoInferenceTaskResult, type VideoInputs, type VideoJob, VideoModel, type VideoModelWithLiterals, type VoiceSettings, type Web, type WebFetchTool, type WebFetchToolResult, type WebFetchToolResultContentError, type WebFetchToolResultContentOneOf, type WebFetchToolResultContentSuccess, type WebSearchResult, type WebSearchResultList, type WebSearchResultLocationCitation, type WebSearchTool, type WebSearchToolResult, type WebSearchToolResultContentOneOf, type WebSearchToolResultError, type WebSearchUserLocation, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type Wix_ai_gatewayV1EditImageRequest, type Wix_ai_gatewayV1EditImageRequestRequestOneOf, type Wix_ai_gatewayV1EditImageResponse, type Wix_ai_gatewayV1EditImageResponseResponseOneOf, type Word };
|
|
13615
|
+
export { type AccountInfo, type Action, type ActionEvent, type AlignmentInfoInChunk, type AnthropicClaudeMessage, type AnthropicMessage, AnthropicModel, type AnthropicModelWithLiterals, type AnthropicStreamChunk, type AnthropicStreamChunkContentOneOf, type AnthropicStreamChunkMessageDelta, type AnthropicV1ImageUrl, type ApplicationBudgetInfo, type AsyncGenerationConfig, type Background, type BashTool, type Blob, type BuiltInTool, type CacheControl, CacheControlType, type CacheControlTypeWithLiterals, type Candidate, type CandidateCitationMetadata, type CandidateCitationMetadataCitation, type CandidateContent, type CandidateContentPart, type CharLocationCitation, type ChatCompletionChunk, type ChatCompletionChunkChunkChoice, type ChatCompletionChunkChunkChoiceChunkDelta, type ChatCompletionMessage, type ChatCompletionMessageContentPart, type ChatCompletionMessageContentPartContentValueOneOf, type ChatCompletionMessageFunctionWithArgs, type ChatCompletionMessageImageUrlContent, ChatCompletionMessageMessageRole, type ChatCompletionMessageMessageRoleWithLiterals, type ChatCompletionMessageToolCall, ChatCompletionModel, type ChatCompletionModelWithLiterals, type Choice, type ChunkChoice, type ChunkChoiceChunkDelta, type ChunkDelta, type Citation, type CitationTypeOneOf, type CitationsEnabled, ClaudeModel, type ClaudeModelWithLiterals, ClipGuidancePreset, type ClipGuidancePresetWithLiterals, type CodeExecution, type CodeExecutionResult, type CodeExecutionTool, type CodeExecutionToolResult, type CodeExecutionToolResultContentOneOf, type CodeExecutionToolResultError, type CommonContentTaskResponse, type CompletionTokenDetails, type ComputerUse, type ComputerUseTool, type Container, type ContainerUpload, type Content, type ContentBlock, type ContentBlockDelta, type ContentBlockDeltaDeltaOneOf, type ContentBlockLocationCitation, type ContentBlockTypeOneOf, type ContentData, type ContentGenerationFailedEvent, type ContentGenerationRequestedEvent, type ContentGenerationSucceededEvent, type ContentItem, type ContentPart, type ContentPartContentValueOneOf, ContentRole, type ContentRoleWithLiterals, type ConverseContentBlock, type ConverseContentBlockContentOneOf, type ConverseInferenceConfig, type ConverseInputSchema, type ConverseMessage, ConverseModel, type ConverseModelWithLiterals, type ConversePerformanceConfig, type ConverseReasoningContent, type ConverseTool, type ConverseToolResult, type ConverseToolResultContent, type ConverseToolResultContentContentOneOf, type ConverseToolUse, type CreateChatCompletionRequest, type CreateChatCompletionRequestFunctionCallOneOf, type CreateChatCompletionRequestFunctionSignature, type CreateChatCompletionRequestResponseFormat, type CreateChatCompletionRequestTool, type CreateChatCompletionResponse, type CreateChatCompletionResponseChoice, type CreateChatCompletionResponseCompletionTokenDetails, type CreateChatCompletionResponsePromptTokenDetails, type CreateChatCompletionResponseTokenUsage, type CreateContentTaskRequest, type CreateContentTaskResponse, type CreateEmbeddingsRequest, type CreateEmbeddingsResponse, type CreateEmbeddingsResponseEmbeddingUsage, type CreateImageOpenAiRequest, type CreateImageOpenAiResponse, type CreateImageRequest, type CreateImageResponse, type CreateModerationRequest, type CreateModerationResponse, CreatePredictionModel, type CreatePredictionModelWithLiterals, type CreatePredictionRequest, type CreatePredictionRequestInputOneOf, type CreatePredictionResponse, type CreatePredictionResponseTokenUsage, type CreateSpeechRequest, type CreateSpeechResponse, type CreateTranscriptionRequest, CreateTranscriptionRequestResponseFormat, type CreateTranscriptionRequestResponseFormatWithLiterals, type CreateTranscriptionResponse, type CreateVideoRequest, type CreateVideoResponse, type CustomTool, type DatalabOcr, type DatalabOcrOutput, type DocumentContent, type DocumentSource, type DomainEvent, type DomainEventBodyOneOf, type DraftTask, type DynamicRequestConfig, type DynamicRetrievalConfig, DynamicRetrievalConfigMode, type DynamicRetrievalConfigModeWithLiterals, EditAction, type EditActionWithLiterals, type EditImageInput, EditImageModel, type EditImageModelWithLiterals, type EditImageOpenAiRequest, type EditImageOpenAiResponse, type EditImageOptions, type EditImageOptionsRequestOneOf, type EditImageRequest, type EditImageResponse, type EditImageWithPromptRequest, EditImageWithPromptRequestModel, type EditImageWithPromptRequestModelWithLiterals, type EditImageWithPromptResponse, ElevenLabsTextToSpeechModel, type ElevenLabsTextToSpeechModelWithLiterals, EmbeddingEncodingFormat, type EmbeddingEncodingFormatWithLiterals, type EmbeddingInfo, type EmbeddingInfoEmbeddingResultOneOf, type EmbeddingInstance, EmbeddingModel, type EmbeddingModelWithLiterals, type EmbeddingPrediction, type EmbeddingUsage, type EntityCreatedEvent, type EntityDeletedEvent, EntityType, type EntityTypeWithLiterals, type EntityUpdatedEvent, Environment, type EnvironmentWithLiterals, type ErrorInfo, type ExecutableCode, type Expand, type ExperimentalPromptConfig, type Export, type ExtractFromImageMetrics, ExtractFromImageModel, type ExtractFromImageModelWithLiterals, type ExtractFromImageRequest, type ExtractFromImageRequestInputOneOf, type ExtractFromImageResponse, type ExtractFromImageResponseOutputOneOf, type ExtractFromImageResponseTokenUsage, type ExtractFromImageUrls, type FallbackPromptConfig, type FallbackProperties, type FileContent, type FileInput, type FineTuningSpec, FinishReason, type FinishReasonWithLiterals, type Fireworks_proxyV1ChatCompletionMessage, type Fireworks_proxyV1ChatCompletionMessageContentPart, type Fireworks_proxyV1ChatCompletionMessageContentPartContentValueOneOf, type Fireworks_proxyV1ChatCompletionMessageImageUrlContent, Fireworks_proxyV1ChatCompletionMessageMessageRole, type Fireworks_proxyV1ChatCompletionMessageMessageRoleWithLiterals, type FloatEmbedding, type FluxDevControlnet, type FluxPulid, type FrameImage, type FunctionCall, type FunctionCallingConfig, type FunctionDeclaration, type FunctionResponse, type FunctionResponseBlob, type FunctionResponsePart, type FunctionResponsePartDataOneOf, type FunctionSignature, type FunctionWithArgs, type GatewayContentBlock, type GatewayContentBlockTypeOneOf, type GatewayMessageDefinition, GatewayMessageDefinitionRole, type GatewayMessageDefinitionRoleWithLiterals, type GatewayToolDefinition, type GatewayToolDefinitionCustomTool, type GatewayToolDefinitionToolOneOf, GenerateAnImageModel, type GenerateAnImageModelWithLiterals, type GenerateAnImageRequest, type GenerateAnImageResponse, type GenerateAudioOptions, type GenerateAudioOptionsAudioRequestOneOf, type GenerateAudioRequest, type GenerateAudioRequestAudioRequestOneOf, type GenerateAudioResponse, type GenerateAudioResponseAudioResponseOneOf, type GenerateAudioStreamedOptions, type GenerateAudioStreamedOptionsAudioRequestOneOf, type GenerateContentByProjectOptions, type GenerateContentByProjectRequest, type GenerateContentByProjectResponse, type GenerateContentByPromptObjectOptions, type GenerateContentByPromptObjectRequest, type GenerateContentByPromptObjectResponse, type GenerateContentByPromptOptions, type GenerateContentByPromptRequest, type GenerateContentByPromptResponse, type GenerateContentModelResponse, type GenerateContentModelResponseResponseOneOf, type GenerateContentRequest, type GenerateContentResponse, type GenerateCoreRequest, GenerateCoreRequestStylePreset, type GenerateCoreRequestStylePresetWithLiterals, type GenerateCoreResponse, type GenerateEmbeddingOptions, type GenerateEmbeddingOptionsEmbeddingRequestOneOf, type GenerateEmbeddingsRequest, type GenerateEmbeddingsRequestEmbeddingRequestOneOf, type GenerateEmbeddingsResponse, type GenerateEmbeddingsResponseEmbeddingResponseOneOf, type GenerateImageByProjectOptions, type GenerateImageByProjectRequest, type GenerateImageByProjectResponse, type GenerateImageByPromptObjectOptions, type GenerateImageByPromptObjectRequest, type GenerateImageByPromptObjectResponse, type GenerateImageByPromptOptions, type GenerateImageByPromptRequest, type GenerateImageByPromptResponse, GenerateImageMlPlatformModel, type GenerateImageMlPlatformModelWithLiterals, type GenerateImageMlPlatformRequest, type GenerateImageMlPlatformRequestInputOneOf, type GenerateImageMlPlatformResponse, type GenerateImageRequest, type GenerateImageResponse, type GenerateModerationOptions, type GenerateModerationOptionsModerationRequestOneOf, type GenerateModerationRequest, type GenerateModerationRequestModerationRequestOneOf, type GenerateModerationResponse, type GenerateModerationResponseModerationResponseOneOf, type GenerateStableDiffusionRequest, GenerateStableDiffusionRequestOutputFormat, type GenerateStableDiffusionRequestOutputFormatWithLiterals, type GenerateStableDiffusionResponse, type GenerateTextByProjectOptions, type GenerateTextByProjectRequest, type GenerateTextByProjectResponse, type GenerateTextByProjectStreamedOptions, type GenerateTextByPromptObjectOptions, type GenerateTextByPromptObjectRequest, type GenerateTextByPromptObjectResponse, type GenerateTextByPromptObjectStreamedOptions, type GenerateTextByPromptOptions, type GenerateTextByPromptRequest, type GenerateTextByPromptResponse, type GenerateTextByPromptStreamedOptions, type GenerateTranscriptionOptions, type GenerateTranscriptionOptionsTranscriptionRequestOneOf, type GenerateTranscriptionRequest, type GenerateTranscriptionRequestTranscriptionRequestOneOf, type GenerateTranscriptionResponse, type GenerateTranscriptionResponseTranscriptionResponseOneOf, type GenerateVideoInstance, type GenerateVideoParameters, type GenerateVideoRequest, type GenerateVideoResponse, type GeneratedAudioChunk, type GeneratedAudioChunkAudioChunkOneOf, type GeneratedContent, type GeneratedTextChunk, type GeneratedTextChunkModelChunkOneOf, type GeneratedVideo, type GenerationConfig, GenerationMode, type GenerationModeWithLiterals, type GenerationRequestedEvent, type GenerationThinkingConfig, type GetApplicationUsageRequest, type GetApplicationUsageResponse, type GetContentTaskRequest, type GetContentTaskResponse, type GetEmbeddingRequest, type GetEmbeddingResponse, type GetProjectRequest, type GetProjectResponse, type GetPromptOptions, type GetPromptRequest, type GetPromptResponse, type GetResultRequest, type GetResultResponse, type GetStatusRequest, type GetStatusResponse, type GetTaskResultRequest, type GetTaskResultResponse, type GetTaskResultResponseResponseOneOf, type GetVideoResultRequest, type GetVideoResultResponse, type GoogleSearch, type GoogleSearchRetrieval, type GoogleproxyV1AnthropicStreamChunk, type GoogleproxyV1AnthropicStreamChunkContentOneOf, type GoogleproxyV1CacheControl, type GoogleproxyV1ChatCompletionMessage, type GoogleproxyV1ContentBlock, type GoogleproxyV1ContentBlockDelta, type GoogleproxyV1ContentBlockDeltaDeltaOneOf, type GoogleproxyV1ContentBlockTypeOneOf, type GoogleproxyV1ImageUrl, type GoogleproxyV1InputSchema, type GoogleproxyV1McpServer, GoogleproxyV1McpServerType, type GoogleproxyV1McpServerTypeWithLiterals, GoogleproxyV1Model, type GoogleproxyV1ModelWithLiterals, type GoogleproxyV1RedactedThinking, GoogleproxyV1ResponseTypeType, type GoogleproxyV1ResponseTypeTypeWithLiterals, type GoogleproxyV1Text, type GoogleproxyV1Thinking, type GoogleproxyV1ThinkingConfig, type GoogleproxyV1Tool, type GoogleproxyV1ToolChoice, GoogleproxyV1ToolChoiceType, type GoogleproxyV1ToolChoiceTypeWithLiterals, type GoogleproxyV1ToolResult, type GoogleproxyV1ToolUse, type GoogleproxyV1Usage, type GroundingChunk, type GroundingChunkChunkTypeOneOf, type GroundingMetadata, type GroundingSupport, type Guidance, HarmCategory, type HarmCategoryWithLiterals, HarmProbability, type HarmProbabilityWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type ImageConfig, ImageCoreModel, type ImageCoreModelWithLiterals, type ImageData, ImageEditingModel, type ImageEditingModelWithLiterals, type ImageEditingRequest, type ImageEditingResponse, type ImageError, type ImageGenerationFailedEvent, type ImageGenerationRequestedEvent, type ImageGenerationSucceededEvent, type ImageInput, ImageMediaTypeMediaType, type ImageMediaTypeMediaTypeWithLiterals, ImageModel, type ImageModelResponse, type ImageModelResponseResponseOneOf, type ImageModelWithLiterals, type ImageObject, type ImageOutputOptions, ImageQuality, type ImageQualityWithLiterals, ImageSize, type ImageSizeWithLiterals, ImageStableDiffusionModel, type ImageStableDiffusionModelWithLiterals, ImageStyle, type ImageStyleWithLiterals, type ImageUrl, type ImageUrlContent, type ImageUrlInput, type ImageUsage, ImagenModel, type ImagenModelWithLiterals, type IncompleteDetails, type InputSchema, type Inputs, type Instance, type InvokeAnthropicClaudeModelRequest, type InvokeAnthropicClaudeModelRequestTool, type InvokeAnthropicClaudeModelResponse, type InvokeAnthropicModelRequest, type InvokeAnthropicModelResponse, type InvokeChatCompletionRequest, type InvokeChatCompletionRequestResponseFormat, type InvokeChatCompletionRequestResponseFormatFormatDetailsOneOf, type InvokeChatCompletionResponse, type InvokeChatCompletionResponseChoice, type InvokeChatCompletionResponseUsage, type InvokeConverseRequest, type InvokeConverseResponse, type InvokeConverseResponseTokenUsage, type InvokeCustomOpenAiModelRequest, type InvokeCustomOpenAiModelRequestFunctionCallOneOf, type InvokeCustomOpenAiModelRequestFunctionSignature, type InvokeCustomOpenAiModelRequestResponseFormat, type InvokeCustomOpenAiModelRequestTool, type InvokeCustomOpenAiModelResponse, type InvokeCustomOpenAiModelResponseChoice, type InvokeCustomOpenAiModelResponseCompletionTokenDetails, type InvokeCustomOpenAiModelResponsePromptTokenDetails, type InvokeCustomOpenAiModelResponseTokenUsage, type InvokeLlamaModelRequest, type InvokeLlamaModelResponse, type InvokeMlPlatformLlamaModelRequest, type InvokeMlPlatformLlamaModelResponse, type InvokeMlPlatformOpenAIChatCompletionRawRequest, type InvokeMlPlatformOpenAIChatCompletionRawResponse, type JsonSchema, Language, type LanguageWithLiterals, type Lighting, LlamaModel, type LlamaModelWithLiterals, type LoraModelSelect, type LucatacoFlorence2Large, type Margin, type McpServer, type McpServerToolConfiguration, McpServerType, type McpServerTypeWithLiterals, type McpToolUse, type MediaContent, type MediaResolution, MediaResolutionLevel, type MediaResolutionLevelWithLiterals, MediaType, type MediaTypeWithLiterals, type MessageDelta, type MessageEnvelope, MessageRole, MessageRoleRole, type MessageRoleRoleWithLiterals, type MessageRoleWithLiterals, type Metrics, Modality, type ModalityTokenCount, type ModalityWithLiterals, Mode, type ModeWithLiterals, Model, type ModelResponse, type ModelResponseResponseOneOf, type ModelWithLiterals, type ModerationResult, type MultiModalInput, type MultiModalInputContentValueOneOf, OpenAiImageModel, type OpenAiImageModelWithLiterals, type OpenAiImageTokenDetails, type OpenAiResponsesRequest, type OpenAiResponsesResponse, type OpenAiResponsesResponseIncompleteDetails, type OpenaiproxyV1ChatCompletionChunk, type OpenaiproxyV1ChatCompletionMessage, type OpenaiproxyV1ChatCompletionMessageContentPart, type OpenaiproxyV1ChatCompletionMessageContentPartContentValueOneOf, type OpenaiproxyV1ChatCompletionMessageImageUrlContent, OpenaiproxyV1ChatCompletionMessageMessageRole, type OpenaiproxyV1ChatCompletionMessageMessageRoleWithLiterals, type OpenaiproxyV1CreateChatCompletionRequest, type OpenaiproxyV1CreateChatCompletionRequestFunctionCallOneOf, type OpenaiproxyV1CreateChatCompletionRequestResponseFormat, type OpenaiproxyV1CreateChatCompletionResponse, type OpenaiproxyV1CreateChatCompletionResponseChoice, type OpenaiproxyV1CreateChatCompletionResponseTokenUsage, OpenaiproxyV1EmbeddingModel, type OpenaiproxyV1EmbeddingModelWithLiterals, OpenaiproxyV1Model, type OpenaiproxyV1ModelWithLiterals, type OptimizePromptOptions, OutageStatus, type OutageStatusWithLiterals, Outcome, type OutcomeWithLiterals, type OutpaintDirection, type Output, type OutputAnnotation, type OutputAnnotationAnnotationTypeOneOf, type OutputContent, OutputFormat, type OutputFormatWithLiterals, type OutputOptions, type Padding, type PageLocationCitation, type Parameters, type PerceptronIsaac01, type PerplexityImageDescriptor, type PerplexityMessage, PerplexityMessageMessageRole, type PerplexityMessageMessageRoleWithLiterals, PerplexityModel, type PerplexityModelWithLiterals, PersonGeneration, type PersonGenerationWithLiterals, type PollImageGenerationResultOptions, type PollImageGenerationResultOptionsRequestOneOf, type PollImageGenerationResultRequest, type PollImageGenerationResultRequestRequestOneOf, type PollImageGenerationResultResponse, type PollImageGenerationResultResponseResponseOneOf, type Prediction, type PredictionMetrics, type PredictionUrls, type Project, type ProjectConfigChangedDomainEvent, type Prompt, type PromptModelRequestOneOf, type PromptTokenDetails, type PronunciationDictionaryLocator, type PrunaaiZImageTurbo, type PublicationDate, type PublishProjectOptions, type PublishProjectRequest, type PublishProjectResponse, type PublishPromptOptions, type PublishPromptRequest, type PublishPromptResponse, type QwenImageLayered, type ReasoningText, type Recraft_proxyV1EditImageRequest, type Recraft_proxyV1EditImageResponse, type RedactedThinking, type RemoveBackgroundRequest, type RemoveBackgroundResponse, type RequestMetadata, type ResponseFormat, type ResponseMetadata, ResponseType, ResponseTypeType, type ResponseTypeTypeWithLiterals, type ResponseTypeWithLiterals, type ResponsesCodeInterpreter, type ResponsesCodeInterpreterContainer, type ResponsesCodeInterpreterContainerAuto, type ResponsesCodeInterpreterContainerContainerTypeOneOf, type ResponsesCodeInterpreterImageOutput, type ResponsesCodeInterpreterLogsOutput, type ResponsesCodeInterpreterOutput, type ResponsesCodeInterpreterOutputOutputTypeOneOf, type ResponsesCodeInterpreterToolCall, type ResponsesFunction, type ResponsesFunctionToolCall, type ResponsesFunctionToolCallOutput, type ResponsesInputItem, type ResponsesInputItemItemOneOf, type ResponsesInputMessage, type ResponsesInputMessageContent, type ResponsesInputMessageContentContentValueOneOf, type ResponsesInputMessageContentFileInput, type ResponsesInputMessageContentImageInput, ResponsesInputMessageResponsesMessageRole, type ResponsesInputMessageResponsesMessageRoleWithLiterals, type ResponsesInputTokensDetails, ResponsesMessageRole, type ResponsesMessageRoleWithLiterals, ResponsesModel, type ResponsesModelWithLiterals, type ResponsesOutput, type ResponsesOutputMessage, type ResponsesOutputMessageOutputContent, type ResponsesOutputOutputOneOf, type ResponsesOutputTokensDetails, type ResponsesReasoning, type ResponsesReasoningContent, type ResponsesReasoningOutput, type ResponsesReasoningSummaryContent, type ResponsesTextFormat, type ResponsesTextFormatFormatOneOf, type ResponsesTextFormatJsonSchema, type ResponsesTokenUsage, type ResponsesTool, type ResponsesToolChoice, type ResponsesToolToolTypeOneOf, type ResponsesWebSearch, type ResponsesWebSearchToolCall, type ResponsesWebSearchToolCallAction, type ResponsesWebSearchUserLocation, type RestoreInfo, type ResultObject, type RetrievalMetadata, type RetrievedContext, type ReveEdit, Role, type RoleWithLiterals, type SafetyAttributes, type SafetyRating, type SafetySetting, Sampler, type SamplerWithLiterals, type SearchEntryPoint, type SearchResultLocationCitation, type Segment, type Segmentation, type SequentialImageGenerationOptions, type ServerToolUse, type Shadow, type SimpleContentBlock, type SimpleContentBlockTypeOneOf, type SpeechChunk, SpeechModel, type SpeechModelWithLiterals, type SpiGenerationConfig, type Statistics, StylePreset, type StylePresetWithLiterals, type SystemContentBlock, type SystemInstruction, type TaskContent, type TaskError, TaskInput, type TaskInputWithLiterals, TaskType, type TaskTypeWithLiterals, type TaskUsage, type Text, type TextContent, type TextEditorTool, type TextEmbeddingInstance, type TextEmbeddingParameters, type TextGenerationFailedEvent, type TextGenerationSucceededEvent, type TextPrompt, type TextRemoval, type TextToImageRequest, TextToImageRequestModel, type TextToImageRequestModelWithLiterals, TextToImageRequestStylePreset, type TextToImageRequestStylePresetWithLiterals, type TextToImageResponse, type TextToImageTaskResult, type TextToSpeechChunk, type TextToSpeechRequest, type Thinking, type ThinkingConfig, type ThinkingTextContent, Threshold, type ThresholdWithLiterals, type TimestampGranularities, TimestampGranularity, type TimestampGranularityWithLiterals, type TokenUsage, type Tool, type ToolCall, type ToolChoice, ToolChoiceType, type ToolChoiceTypeWithLiterals, type ToolConfig, type ToolConfiguration, type ToolResult, type ToolResultContent, type ToolResultContentBlock, type ToolResultContentBlockTypeOneOf, type ToolResultSearchResult, type ToolSpecification, type ToolUse, type ToolUseContent, TranscriptionModel, type TranscriptionModelWithLiterals, Type, type TypeWithLiterals, type UrlCitation, type Usage, type UsageCacheCreation, type UsageMetadata, type UsageServerToolUse, type UserLocation, type UserPerApplicationBudgetInfo, type UserRequestInfo, type V1AnthropicClaudeMessage, type V1AnthropicStreamChunk, type V1AnthropicStreamChunkContentOneOf, type V1AnthropicStreamChunkMessageDelta, type V1CacheControl, V1CacheControlType, type V1CacheControlTypeWithLiterals, type V1ChatCompletionChunk, type V1ChatCompletionChunkChunkChoice, type V1ChatCompletionMessage, type V1ChatCompletionMessageContentPart, type V1ChatCompletionMessageContentPartContentValueOneOf, type V1ChatCompletionMessageFunctionWithArgs, type V1ChatCompletionMessageImageUrlContent, V1ChatCompletionMessageMessageRole, type V1ChatCompletionMessageMessageRoleWithLiterals, type V1ChatCompletionMessageToolCall, type V1CodeExecutionResult, type V1ContentBlock, type V1ContentBlockDelta, type V1ContentBlockDeltaDeltaOneOf, type V1ContentBlockTypeOneOf, type V1ContentPart, type V1CreateChatCompletionRequest, type V1CreateChatCompletionRequestResponseFormat, type V1CreateChatCompletionRequestTool, type V1CreateChatCompletionResponse, type V1CreateChatCompletionResponseChoice, type V1CreateChatCompletionResponseTokenUsage, type V1CreateEmbeddingsRequest, type V1CreateEmbeddingsResponse, V1EditImageModel, type V1EditImageModelWithLiterals, type V1EditImageRequest, type V1EditImageResponse, V1EmbeddingEncodingFormat, type V1EmbeddingEncodingFormatWithLiterals, type V1EmbeddingInfo, type V1EmbeddingInfoEmbeddingResultOneOf, V1EmbeddingModel, type V1EmbeddingModelWithLiterals, type V1FineTuningSpec, type V1FloatEmbedding, type V1FluxPulid, type V1GenerateImageRequest, type V1GenerateImageResponse, type V1GetResultRequest, type V1GetResultResponse, type V1ImageInput, V1ImageMediaTypeMediaType, type V1ImageMediaTypeMediaTypeWithLiterals, V1ImageModel, type V1ImageModelWithLiterals, type V1ImageObject, type V1ImageUrl, type V1ImageUsage, type V1InputSchema, type V1InvokeAnthropicClaudeModelRequest, type V1InvokeAnthropicClaudeModelResponse, type V1McpServer, type V1McpServerToolConfiguration, V1McpServerType, type V1McpServerTypeWithLiterals, V1MessageRoleRole, type V1MessageRoleRoleWithLiterals, V1Model, type V1ModelWithLiterals, type V1OpenAiResponsesRequest, type V1OpenAiResponsesResponse, type V1OutputAnnotation, type V1OutputAnnotationAnnotationTypeOneOf, type V1RedactedThinking, V1ResponseTypeType, type V1ResponseTypeTypeWithLiterals, type V1ResponsesCodeInterpreter, type V1ResponsesCodeInterpreterContainer, type V1ResponsesCodeInterpreterContainerAuto, type V1ResponsesCodeInterpreterContainerContainerTypeOneOf, type V1ResponsesCodeInterpreterImageOutput, type V1ResponsesCodeInterpreterLogsOutput, type V1ResponsesCodeInterpreterOutput, type V1ResponsesCodeInterpreterOutputOutputTypeOneOf, type V1ResponsesCodeInterpreterToolCall, type V1ResponsesFunction, type V1ResponsesFunctionToolCall, type V1ResponsesFunctionToolCallOutput, type V1ResponsesInputItem, type V1ResponsesInputItemItemOneOf, type V1ResponsesInputMessage, type V1ResponsesInputMessageContent, type V1ResponsesInputMessageContentContentValueOneOf, type V1ResponsesInputTokensDetails, V1ResponsesModel, type V1ResponsesModelWithLiterals, type V1ResponsesOutput, type V1ResponsesOutputMessage, type V1ResponsesOutputOutputOneOf, type V1ResponsesOutputTokensDetails, type V1ResponsesReasoning, type V1ResponsesReasoningContent, type V1ResponsesReasoningOutput, type V1ResponsesReasoningSummaryContent, type V1ResponsesTextFormat, type V1ResponsesTextFormatFormatOneOf, type V1ResponsesTokenUsage, type V1ResponsesTool, type V1ResponsesToolChoice, type V1ResponsesToolToolTypeOneOf, type V1ResponsesWebSearch, type V1ResponsesWebSearchToolCall, type V1Segment, type V1SimpleContentBlock, type V1SimpleContentBlockTypeOneOf, type V1Text, type V1TextToImageRequest, type V1TextToImageResponse, type V1Thinking, type V1ThinkingConfig, type V1TokenUsage, type V1Tool, type V1ToolChoice, V1ToolChoiceType, type V1ToolChoiceTypeWithLiterals, type V1ToolConfig, type V1ToolKindOneOf, type V1ToolResult, type V1ToolUse, type V1UrlCitation, type V1Usage, V1VideoModel, type V1VideoModelWithLiterals, VideoGenModel, type VideoGenModelWithLiterals, type VideoInferenceRequest, type VideoInferenceResponse, type VideoInferenceTaskResult, type VideoInputs, type VideoJob, VideoModel, type VideoModelWithLiterals, type VoiceSettings, type Web, type WebFetchTool, type WebFetchToolResult, type WebFetchToolResultContentError, type WebFetchToolResultContentOneOf, type WebFetchToolResultContentSuccess, type WebSearchResult, type WebSearchResultList, type WebSearchResultLocationCitation, type WebSearchTool, type WebSearchToolResult, type WebSearchToolResultContentOneOf, type WebSearchToolResultError, type WebSearchUserLocation, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type Wix_ai_gatewayV1EditImageRequest, type Wix_ai_gatewayV1EditImageRequestRequestOneOf, type Wix_ai_gatewayV1EditImageResponse, type Wix_ai_gatewayV1EditImageResponseResponseOneOf, type Word };
|