@wix/auto_sdk_ai-gateway_generators 1.0.97 → 1.0.98

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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +473 -1
  2. package/build/cjs/index.js +126 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +1 -1
  5. package/build/cjs/index.typings.js +126 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +471 -1
  8. package/build/cjs/meta.js +126 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +473 -1
  11. package/build/es/index.mjs +125 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +1 -1
  14. package/build/es/index.typings.mjs +125 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +471 -1
  17. package/build/es/meta.mjs +125 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +14 -14
  20. package/build/internal/cjs/index.js +126 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +486 -14
  23. package/build/internal/cjs/index.typings.js +126 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +471 -1
  26. package/build/internal/cjs/meta.js +126 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +14 -14
  29. package/build/internal/es/index.mjs +125 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +486 -14
  32. package/build/internal/es/index.typings.mjs +125 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +471 -1
  35. package/build/internal/es/meta.mjs +125 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -63,6 +63,8 @@ interface Prompt extends PromptModelRequestOneOf {
63
63
  bytedanceCreateContentTaskRequest?: CreateContentTaskRequest;
64
64
  /** Bytedance - Generate image request (Seedream models) */
65
65
  bytedanceGenerateImageRequest?: GenerateImageRequest;
66
+ /** vLLM - OpenAI payload */
67
+ vllmInvokeCustomOpenAiRequest?: V1InvokeCustomOpenAiModelRequest;
66
68
  /**
67
69
  * Prompt id.
68
70
  * @format GUID
@@ -149,6 +151,8 @@ interface PromptModelRequestOneOf {
149
151
  bytedanceCreateContentTaskRequest?: CreateContentTaskRequest;
150
152
  /** Bytedance - Generate image request (Seedream models) */
151
153
  bytedanceGenerateImageRequest?: GenerateImageRequest;
154
+ /** vLLM - OpenAI payload */
155
+ vllmInvokeCustomOpenAiRequest?: V1InvokeCustomOpenAiModelRequest;
152
156
  }
153
157
  interface FallbackPromptConfig {
154
158
  /**
@@ -7824,6 +7828,316 @@ interface OptimizePromptOptions {
7824
7828
  */
7825
7829
  mode?: string | null;
7826
7830
  }
7831
+ interface V1InvokeCustomOpenAiModelRequest extends V1InvokeCustomOpenAiModelRequestFunctionCallOneOf {
7832
+ /** Specifying a particular function via {"name":\ "my_function"} forces the model to call that function. */
7833
+ forceCallFunctionCallConfig?: Record<string, any> | null;
7834
+ /**
7835
+ * "none" means the model does not call a function, and responds to the end-user.
7836
+ * "auto" means the model can pick between an end-user or calling a function.
7837
+ * "none" is the default when no functions are present. "auto" is the default if functions are present.
7838
+ * @maxLength 10
7839
+ */
7840
+ defaultFunctionCallConfig?: string | null;
7841
+ /**
7842
+ * ID of the model to use.
7843
+ * @maxLength 10000
7844
+ */
7845
+ modelId?: string;
7846
+ /**
7847
+ * A list of messages comprising the conversation so far.
7848
+ * @minSize 1
7849
+ * @maxSize 1000
7850
+ */
7851
+ messages?: Vllm_proxyV1ChatCompletionMessage[];
7852
+ /**
7853
+ * A list of functions the model may generate JSON inputs for.
7854
+ * @maxSize 100
7855
+ * @deprecated A list of functions the model may generate JSON inputs for.
7856
+ * @replacedBy tools
7857
+ * @targetRemovalDate 2026-12-31
7858
+ */
7859
+ functions?: V1InvokeCustomOpenAiModelRequestFunctionSignature[];
7860
+ /**
7861
+ * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.
7862
+ * We generally recommend altering this or top_p but not both.
7863
+ * @max 2
7864
+ */
7865
+ temperature?: number | null;
7866
+ /**
7867
+ * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.
7868
+ * So 0.1 means only the tokens comprising the top 10% probability mass are considered.
7869
+ * We generally recommend altering this or temperature but not both. Defaults to 1.
7870
+ */
7871
+ topP?: number | null;
7872
+ /** How many chat completion choices to generate for each input message. Defaults to 1. */
7873
+ n?: number | null;
7874
+ /**
7875
+ * Stream: Up to 4 sequences where the API will stop generating further tokens.
7876
+ * @maxSize 4
7877
+ * @maxLength 100
7878
+ */
7879
+ stop?: string[];
7880
+ /**
7881
+ * The maximum number of tokens allowed for the generated answer.
7882
+ * By default, the number of tokens the model can return will be (4096 - prompt tokens).
7883
+ */
7884
+ maxTokens?: number | null;
7885
+ /**
7886
+ * Number between -2.0 and 2.0.
7887
+ * Positive values penalize new tokens based on whether they appear in the text so far,
7888
+ * increasing the model's likelihood to talk about new topics.
7889
+ * Defaults to 0.
7890
+ * @min -2
7891
+ * @max 2
7892
+ */
7893
+ presencePenalty?: number | null;
7894
+ /**
7895
+ * Number between -2.0 and 2.0.
7896
+ * Positive values penalize new tokens based on their existing frequency in the text so far,
7897
+ * decreasing the model's likelihood to repeat the same line verbatim.
7898
+ * Defaults to 0.
7899
+ * @min -2
7900
+ * @max 2
7901
+ */
7902
+ frequencyPenalty?: number | null;
7903
+ /**
7904
+ * Modify the likelihood of specified tokens appearing in the completion.
7905
+ * Accepts a json object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100.
7906
+ * Mathematically, the bias is added to the logits generated by the model prior to sampling.
7907
+ * The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection;
7908
+ * values like -100 or 100 should result in a ban or exclusive selection of the relevant token.
7909
+ */
7910
+ logitBias?: Record<string, number>;
7911
+ /**
7912
+ * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse.
7913
+ * @maxLength 100
7914
+ */
7915
+ user?: string | null;
7916
+ /**
7917
+ * This feature is in Beta. If specified, our system will make a best effort to sample deterministically, such that
7918
+ * repeated requests with the same "seed" and parameters should return the same result. Determinism is not guaranteed,
7919
+ * and you should refer to the "system_fingerprint" response parameter to monitor changes in the backend.
7920
+ */
7921
+ seed?: string | null;
7922
+ /**
7923
+ * Controls which (if any) function is called by the model.
7924
+ * "none" means the model will not call a function and instead generates a message.
7925
+ * "auto" means the model can pick between generating a message or calling a function.
7926
+ * Specifying a particular function via {"type: "function", "function": {"name": "my_function"}} forces the model to call that function.
7927
+ *
7928
+ * "none" is the default when no functions are present. "auto" is the default if functions are present.
7929
+ * @maxLength 10000
7930
+ */
7931
+ toolChoice?: string | null;
7932
+ /**
7933
+ * A list of tools the model may call. Currently, only functions are supported as a tool. Use this to provide a list of functions the model may generate JSON inputs for.
7934
+ * @maxSize 1000
7935
+ */
7936
+ tools?: V1InvokeCustomOpenAiModelRequestTool[];
7937
+ /**
7938
+ * An object specifying the format that the model must output. Compatible with gpt-4-1106-preview and gpt-3.5-turbo-1106.
7939
+ * Setting to type to "json_object" enables JSON mode, which guarantees the message the model generates is valid JSON.
7940
+ * Important: when using JSON mode, you must also instruct the model to produce JSON yourself via a system or user message.
7941
+ * Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit,
7942
+ * resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if finish_reason="length",
7943
+ * which indicates the generation exceeded max_tokens or the conversation exceeded the max context length.
7944
+ */
7945
+ responseFormat?: V1InvokeCustomOpenAiModelRequestResponseFormat;
7946
+ /**
7947
+ * An upper bound for the number of tokens that can be generated for a completion,
7948
+ * including visible output tokens and reasoning tokens.
7949
+ */
7950
+ maxCompletionTokens?: number | null;
7951
+ /**
7952
+ * Constrains effort on reasoning for reasoning models. Currently supported values are low, medium, and high.
7953
+ * Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
7954
+ * o1 models only
7955
+ * @maxLength 100
7956
+ */
7957
+ reasoningEffort?: string | null;
7958
+ /** Whether to enable parallel function calling during tool use. */
7959
+ parallelToolCalls?: boolean | null;
7960
+ /**
7961
+ * Constrains the verbosity of the model's response. Lower values will result in more concise responses,
7962
+ * while higher values will result in more verbose responses.
7963
+ * Currently supported values are low, medium, and high.
7964
+ * @maxLength 100
7965
+ */
7966
+ verbosity?: string | null;
7967
+ }
7968
+ /** @oneof */
7969
+ interface V1InvokeCustomOpenAiModelRequestFunctionCallOneOf {
7970
+ /** Specifying a particular function via {"name":\ "my_function"} forces the model to call that function. */
7971
+ forceCallFunctionCallConfig?: Record<string, any> | null;
7972
+ /**
7973
+ * "none" means the model does not call a function, and responds to the end-user.
7974
+ * "auto" means the model can pick between an end-user or calling a function.
7975
+ * "none" is the default when no functions are present. "auto" is the default if functions are present.
7976
+ * @maxLength 10
7977
+ */
7978
+ defaultFunctionCallConfig?: string | null;
7979
+ }
7980
+ interface V1InvokeCustomOpenAiModelRequestFunctionSignature {
7981
+ /**
7982
+ * The name of the function to be called.
7983
+ * @maxLength 64
7984
+ */
7985
+ name?: string | null;
7986
+ /**
7987
+ * The description of what the function does.
7988
+ * @maxLength 100000
7989
+ */
7990
+ description?: string | null;
7991
+ /** The parameters the functions accepts, described as a JSON Schema object. */
7992
+ parameters?: Record<string, any> | null;
7993
+ /** If true, the model will strictly follow the function parameters schema (a.k.a. open-ai structured outputs). */
7994
+ strict?: boolean | null;
7995
+ }
7996
+ interface Vllm_proxyV1ChatCompletionMessage {
7997
+ /** The role of the message author. */
7998
+ role?: Vllm_proxyV1ChatCompletionMessageMessageRoleWithLiterals;
7999
+ /**
8000
+ * The contents of the message. content is required for all messages, and may be null for assistant messages with function calls.
8001
+ * @maxLength 1000000000
8002
+ */
8003
+ content?: string | null;
8004
+ /**
8005
+ * The name of the author of this message. name is required if role is function, and it should be the name of
8006
+ * the function whose response is in the content. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of 64 characters.
8007
+ * @minLength 1
8008
+ * @maxLength 64
8009
+ */
8010
+ name?: string | null;
8011
+ /**
8012
+ * The name and arguments of a function that should be called, as generated by the model.
8013
+ * @deprecated The name and arguments of a function that should be called, as generated by the model.
8014
+ * @replacedBy tool_calls
8015
+ * @targetRemovalDate 2026-12-31
8016
+ */
8017
+ functionCall?: Vllm_proxyV1ChatCompletionMessageFunctionWithArgs;
8018
+ /**
8019
+ * The tool calls generated by the model, such as function calls.
8020
+ * @maxSize 1000
8021
+ */
8022
+ toolCalls?: Vllm_proxyV1ChatCompletionMessageToolCall[];
8023
+ /**
8024
+ * Tool call that this message is responding to.
8025
+ * @maxLength 100
8026
+ */
8027
+ toolCallId?: string | null;
8028
+ /**
8029
+ * An array of content parts with a defined type,each can be of type text or image_url when passing in images.
8030
+ * If defined, content field will be ignored.
8031
+ * You can pass multiple images by adding multiple image_url content parts.
8032
+ * Image input is only supported when using the gpt-4-visual-preview model.
8033
+ * @maxSize 5
8034
+ */
8035
+ contentParts?: Vllm_proxyV1ChatCompletionMessageContentPart[];
8036
+ /**
8037
+ * Model's chain-of-thought / reasoning trace, populated by reasoning-capable models (e.g. Kimi K2, DeepSeek R1).
8038
+ * @maxLength 1000000000
8039
+ */
8040
+ reasoningContent?: string | null;
8041
+ }
8042
+ interface Vllm_proxyV1ChatCompletionMessageFunctionWithArgs {
8043
+ /**
8044
+ * The name of the function to call.
8045
+ * @maxLength 64
8046
+ */
8047
+ name?: string | null;
8048
+ /**
8049
+ * The arguments to call the function with, as generated by the model in JSON format.
8050
+ * Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by
8051
+ * your function schema. Validate the arguments in your code before calling your function.
8052
+ * @maxLength 1000000
8053
+ */
8054
+ arguments?: string | null;
8055
+ }
8056
+ interface Vllm_proxyV1ChatCompletionMessageImageUrlContent {
8057
+ /**
8058
+ * The URL of the image, must be a valid wix-mp URL.
8059
+ * @maxLength 100000
8060
+ */
8061
+ url?: string | null;
8062
+ /**
8063
+ * By controlling the detail parameter, which has three options, low, high, or auto,
8064
+ * you have control over how the model processes the image and generates its textual understanding.
8065
+ * more info and cost calculation : https://platform.openai.com/docs/guides/vision/low-or-high-fidelity-image-understanding
8066
+ * @maxLength 100
8067
+ */
8068
+ detail?: string | null;
8069
+ }
8070
+ declare enum Vllm_proxyV1ChatCompletionMessageMessageRole {
8071
+ UNKNOWN = "UNKNOWN",
8072
+ USER = "USER",
8073
+ ASSISTANT = "ASSISTANT",
8074
+ SYSTEM = "SYSTEM",
8075
+ FUNCTION = "FUNCTION",
8076
+ TOOL = "TOOL",
8077
+ /**
8078
+ * Developer-provided instructions that the model should follow, regardless of messages sent by the user.
8079
+ * With o1 models and newer, developer messages replace the previous system messages.
8080
+ */
8081
+ DEVELOPER = "DEVELOPER"
8082
+ }
8083
+ /** @enumType */
8084
+ type Vllm_proxyV1ChatCompletionMessageMessageRoleWithLiterals = Vllm_proxyV1ChatCompletionMessageMessageRole | 'UNKNOWN' | 'USER' | 'ASSISTANT' | 'SYSTEM' | 'FUNCTION' | 'TOOL' | 'DEVELOPER';
8085
+ interface Vllm_proxyV1ChatCompletionMessageToolCall {
8086
+ /**
8087
+ * The ID of the tool call.
8088
+ * @maxLength 100
8089
+ */
8090
+ _id?: string;
8091
+ /**
8092
+ * The type of the tool. Currently, only function is supported.
8093
+ * @maxLength 100
8094
+ */
8095
+ type?: string;
8096
+ /** The function that the model called. */
8097
+ function?: Vllm_proxyV1ChatCompletionMessageFunctionWithArgs;
8098
+ }
8099
+ interface Vllm_proxyV1ChatCompletionMessageContentPart extends Vllm_proxyV1ChatCompletionMessageContentPartContentValueOneOf {
8100
+ /** Image_url content */
8101
+ imageUrl?: Vllm_proxyV1ChatCompletionMessageImageUrlContent;
8102
+ /**
8103
+ * Text content
8104
+ * @maxLength 1000000000
8105
+ */
8106
+ text?: string | null;
8107
+ /**
8108
+ * The type of the content part. Can be text or image_url.
8109
+ * @maxLength 100
8110
+ */
8111
+ type?: string | null;
8112
+ }
8113
+ /** @oneof */
8114
+ interface Vllm_proxyV1ChatCompletionMessageContentPartContentValueOneOf {
8115
+ /** Image_url content */
8116
+ imageUrl?: Vllm_proxyV1ChatCompletionMessageImageUrlContent;
8117
+ /**
8118
+ * Text content
8119
+ * @maxLength 1000000000
8120
+ */
8121
+ text?: string | null;
8122
+ }
8123
+ interface V1InvokeCustomOpenAiModelRequestTool {
8124
+ /**
8125
+ * The type of the tool. Currently, only "function" is supported.
8126
+ * @maxLength 100
8127
+ */
8128
+ type?: string;
8129
+ /** Function definition object. */
8130
+ function?: V1InvokeCustomOpenAiModelRequestFunctionSignature;
8131
+ }
8132
+ interface V1InvokeCustomOpenAiModelRequestResponseFormat {
8133
+ /**
8134
+ * Must be one of text, json_object or json_schema.
8135
+ * @maxLength 100
8136
+ */
8137
+ type?: string | null;
8138
+ /** The schema object describes the output object for the model. Currently, only the JSON Schema Object is supported. */
8139
+ schema?: Record<string, any> | null;
8140
+ }
7827
8141
  interface ContentGenerationRequestedEvent {
7828
8142
  /** Prompt that the generation was requested for. */
7829
8143
  prompt?: Prompt;
@@ -8114,6 +8428,8 @@ interface GenerateContentModelResponse extends GenerateContentModelResponseRespo
8114
8428
  bytedanceCreateContentTaskResponse?: CreateContentTaskResponse;
8115
8429
  /** Bytedance - Generate image response (Seedream models) */
8116
8430
  bytedanceGenerateImageResponse?: GenerateImageResponse;
8431
+ /** vLLM - OpenAI payload */
8432
+ vllmInvokeCustomOpenAiResponse?: V1InvokeCustomOpenAiModelResponse;
8117
8433
  /** Extracted generated content data from the model's response. */
8118
8434
  generatedContent?: GeneratedContent;
8119
8435
  /** Extracted cost of the request in microcents. */
@@ -8189,6 +8505,8 @@ interface GenerateContentModelResponseResponseOneOf {
8189
8505
  bytedanceCreateContentTaskResponse?: CreateContentTaskResponse;
8190
8506
  /** Bytedance - Generate image response (Seedream models) */
8191
8507
  bytedanceGenerateImageResponse?: GenerateImageResponse;
8508
+ /** vLLM - OpenAI payload */
8509
+ vllmInvokeCustomOpenAiResponse?: V1InvokeCustomOpenAiModelResponse;
8192
8510
  }
8193
8511
  /** Model generation result, at least one of the fields should be present */
8194
8512
  interface GeneratedContent {
@@ -10188,6 +10506,76 @@ interface ImageUsage {
10188
10506
  /** Total tokens consumed by this request. Same as output_tokens (input tokens are not counted). */
10189
10507
  totalTokens?: number | null;
10190
10508
  }
10509
+ interface V1InvokeCustomOpenAiModelResponse {
10510
+ /**
10511
+ * A unique identifier for the chat completion.
10512
+ * @maxLength 100
10513
+ */
10514
+ responseId?: string | null;
10515
+ /**
10516
+ * Description of the response object. Will be equal to "chat.completion" for chat completion.
10517
+ * @maxLength 100
10518
+ */
10519
+ object?: string | null;
10520
+ /** Timestamp for when the response was created. */
10521
+ created?: number | null;
10522
+ /**
10523
+ * Model that produced the completion.
10524
+ * @maxLength 10000
10525
+ */
10526
+ modelId?: string;
10527
+ /** A list of chat completion choices. Can be more than one if n is greater than 1. */
10528
+ choices?: V1InvokeCustomOpenAiModelResponseChoice[];
10529
+ /** TokenUsage object describing the tokens usage per request. */
10530
+ usage?: V1InvokeCustomOpenAiModelResponseTokenUsage;
10531
+ /** Cost of the request in microcents. */
10532
+ microcentsSpent?: string | null;
10533
+ /**
10534
+ * This fingerprint represents the backend configuration that the model runs with.
10535
+ * Can be used in conjunction with the seed request parameter to understand when backend changes have been made that might impact determinism.
10536
+ * @maxLength 10000
10537
+ */
10538
+ systemFingerprint?: string | null;
10539
+ }
10540
+ interface V1InvokeCustomOpenAiModelResponsePromptTokenDetails {
10541
+ /** Audio input tokens present in the prompt. */
10542
+ audioTokens?: number | null;
10543
+ /** Cached tokens present in the prompt. */
10544
+ cachedTokens?: number | null;
10545
+ }
10546
+ interface V1InvokeCustomOpenAiModelResponseCompletionTokenDetails {
10547
+ /** Reasoning tokens present in the completion. */
10548
+ reasoningTokens?: number | null;
10549
+ /** Audio tokens present in the completion. */
10550
+ audioTokens?: number | null;
10551
+ /** Accepted prediction tokens. */
10552
+ acceptedPredictionTokens?: number | null;
10553
+ /** Rejected prediction tokens. */
10554
+ rejectedPredictionTokens?: number | null;
10555
+ }
10556
+ interface V1InvokeCustomOpenAiModelResponseChoice {
10557
+ /** Index of this Choice in choices array. */
10558
+ index?: number | null;
10559
+ /** ChatCompletionMessage object that defines the message. */
10560
+ message?: Vllm_proxyV1ChatCompletionMessage;
10561
+ /**
10562
+ * Reason why the message generation was stopped.
10563
+ * @maxLength 100
10564
+ */
10565
+ finishReason?: string | null;
10566
+ }
10567
+ interface V1InvokeCustomOpenAiModelResponseTokenUsage {
10568
+ /** Number of LLM tokens required to encode input. */
10569
+ inputTokens?: number | null;
10570
+ /** Number of LLM tokens required to encode output. */
10571
+ outputTokens?: number | null;
10572
+ /** Total number of LLM tokens used for the request. */
10573
+ totalTokens?: number | null;
10574
+ /** Breakdown of tokens used in the prompt. */
10575
+ promptTokenDetails?: V1InvokeCustomOpenAiModelResponsePromptTokenDetails;
10576
+ /** Breakdown of tokens used in the completion. */
10577
+ completionTokenDetails?: V1InvokeCustomOpenAiModelResponseCompletionTokenDetails;
10578
+ }
10191
10579
  interface ContentGenerationFailedEvent {
10192
10580
  /**
10193
10581
  * Error message that content generation failed with.
@@ -10271,6 +10659,8 @@ interface ModelResponse extends ModelResponseResponseOneOf {
10271
10659
  openAiResponsesResponse?: V1OpenAiResponsesResponse;
10272
10660
  /** Fireworks - OpenAI payload */
10273
10661
  fireworksInvokeCustomOpenAiResponse?: InvokeCustomOpenAiModelResponse;
10662
+ /** vLLM - OpenAI payload */
10663
+ vllmInvokeCustomOpenAiResponse?: V1InvokeCustomOpenAiModelResponse;
10274
10664
  /**
10275
10665
  * Extracted generated text messages from the model's response.
10276
10666
  * @maxSize 100
@@ -10308,6 +10698,8 @@ interface ModelResponseResponseOneOf {
10308
10698
  openAiResponsesResponse?: V1OpenAiResponsesResponse;
10309
10699
  /** Fireworks - OpenAI payload */
10310
10700
  fireworksInvokeCustomOpenAiResponse?: InvokeCustomOpenAiModelResponse;
10701
+ /** vLLM - OpenAI payload */
10702
+ vllmInvokeCustomOpenAiResponse?: V1InvokeCustomOpenAiModelResponse;
10311
10703
  }
10312
10704
  interface GenerationRequestedEvent {
10313
10705
  /** Prompt that the generation was requested for. */
@@ -10364,6 +10756,8 @@ interface GeneratedTextChunk extends GeneratedTextChunkModelChunkOneOf {
10364
10756
  anthropicStreamChunk?: V1AnthropicStreamChunk;
10365
10757
  /** Fireworks chat completion chunk. */
10366
10758
  fireworksChatCompletionChunk?: V1ChatCompletionChunk;
10759
+ /** vLLM chat completion chunk. */
10760
+ vllmChatCompletionChunk?: InvokeCustomOpenAiModelStreamedResponse;
10367
10761
  /**
10368
10762
  * Extracted text content from the chunk.
10369
10763
  * @maxLength 100
@@ -10391,6 +10785,8 @@ interface GeneratedTextChunkModelChunkOneOf {
10391
10785
  anthropicStreamChunk?: V1AnthropicStreamChunk;
10392
10786
  /** Fireworks chat completion chunk. */
10393
10787
  fireworksChatCompletionChunk?: V1ChatCompletionChunk;
10788
+ /** vLLM chat completion chunk. */
10789
+ vllmChatCompletionChunk?: InvokeCustomOpenAiModelStreamedResponse;
10394
10790
  }
10395
10791
  interface ChatCompletionChunk {
10396
10792
  /**
@@ -10867,6 +11263,80 @@ interface ChatCompletionChunkChunkChoice {
10867
11263
  /** The index of the choice in the list of choices. */
10868
11264
  index?: number | null;
10869
11265
  }
11266
+ interface InvokeCustomOpenAiModelStreamedResponse {
11267
+ /**
11268
+ * A unique identifier for the chat completion. Each chunk has the same ID.
11269
+ * @maxLength 100
11270
+ */
11271
+ responseId?: string | null;
11272
+ /**
11273
+ * A list of chat completion choices. Can contain more than one elements if n is greater than 1.
11274
+ * Can also be empty for the last chunk if you set stream_options: {"include_usage": true}.
11275
+ */
11276
+ choices?: InvokeCustomOpenAiModelStreamedResponseChunkChoice[];
11277
+ /**
11278
+ * The Unix timestamp (in seconds) of when the chat completion was created.
11279
+ * Each chunk has the same timestamp.
11280
+ */
11281
+ created?: number | null;
11282
+ /**
11283
+ * Model that produced the completion.
11284
+ * @maxLength 10000
11285
+ */
11286
+ modelId?: string;
11287
+ /**
11288
+ * This fingerprint represents the backend configuration that the model runs with. Can be used in conjunction with the
11289
+ * seed request parameter to understand when backend changes have been made that might impact determinism.
11290
+ * @maxLength 10000
11291
+ */
11292
+ systemFingerprint?: string | null;
11293
+ /**
11294
+ * The object type, which is always chat.completion.chunk.
11295
+ * @maxLength 100
11296
+ */
11297
+ object?: string | null;
11298
+ /**
11299
+ * An optional field that will only be present when you set stream_options: {"include_usage": true} in your request.
11300
+ * When present, it contains a null value except for the last chunk which contains the token usage statistics for the entire request.
11301
+ */
11302
+ usage?: V1InvokeCustomOpenAiModelResponseTokenUsage;
11303
+ /** Cost of the entire request in micro cents. Calculated manually and is present only in the last chunk. */
11304
+ microcentsSpent?: string | null;
11305
+ }
11306
+ interface InvokeCustomOpenAiModelStreamedResponseChunkChoiceChunkDelta {
11307
+ /**
11308
+ * The contents of the chunk message.
11309
+ * @maxLength 1000
11310
+ */
11311
+ content?: string | null;
11312
+ /** The role of the author of this message. */
11313
+ role?: Vllm_proxyV1ChatCompletionMessageMessageRoleWithLiterals;
11314
+ /**
11315
+ * Tool call requested by the model. Function arguments can be partial jsons and have to be assembled manually.
11316
+ * @maxSize 100
11317
+ */
11318
+ toolCalls?: Vllm_proxyV1ChatCompletionMessageToolCall[];
11319
+ /**
11320
+ * Streamed delta of the model's reasoning content. Concatenate across chunks to reconstruct the full trace.
11321
+ * @maxLength 1000
11322
+ */
11323
+ reasoningContent?: string | null;
11324
+ }
11325
+ interface InvokeCustomOpenAiModelStreamedResponseChunkChoice {
11326
+ /** A chat completion delta generated by streamed model responses */
11327
+ delta?: InvokeCustomOpenAiModelStreamedResponseChunkChoiceChunkDelta;
11328
+ /**
11329
+ * The reason the model stopped generating tokens. This will be
11330
+ * "stop" if the model hit a natural stop point or a provided stop sequence,
11331
+ * "length" if the maximum number of tokens specified in the request was reached,
11332
+ * "content_filter" if content was omitted due to a flag from our content filters,
11333
+ * "tool_calls" if the model called a tool
11334
+ * @maxLength 100
11335
+ */
11336
+ finishReason?: string | null;
11337
+ /** The index of the choice in the list of choices. */
11338
+ index?: number | null;
11339
+ }
10870
11340
  interface GenerateTextByPromptObjectRequest {
10871
11341
  /** Prompt object that describes the text generation request. */
10872
11342
  prompt?: Prompt;
@@ -14043,6 +14513,8 @@ interface PublishPromptOptions {
14043
14513
  bytedanceCreateContentTaskRequest?: CreateContentTaskRequest;
14044
14514
  /** Bytedance - Generate image request (Seedream models) */
14045
14515
  bytedanceGenerateImageRequest?: GenerateImageRequest;
14516
+ /** vLLM - OpenAI payload */
14517
+ vllmInvokeCustomOpenAiRequest?: V1InvokeCustomOpenAiModelRequest;
14046
14518
  /**
14047
14519
  * Prompt id.
14048
14520
  * @format GUID
@@ -14156,4 +14628,4 @@ interface PollImageGenerationResultOptionsRequestOneOf {
14156
14628
  bytedanceGetContentTaskRequest?: GetContentTaskRequest;
14157
14629
  }
14158
14630
 
14159
- 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 BoundingPoly, 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 ConductorExperimentConfig, type ConductorExperimentValue, type ConductorExperimentValueExperimentResultOneOf, 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 DetectTextRequest, type DetectTextResponse, 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, EditImageRequestModel, type EditImageRequestModelWithLiterals, type EditImageResponse, type EditImageTaskResult, type EditImageWithPromptRequest, EditImageWithPromptRequestModel, type EditImageWithPromptRequestModelWithLiterals, type EditImageWithPromptResponse, type Element, 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 FullTextAnnotation, 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 GoogleproxyV1OutputConfig, 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, type OcrBlock, type OcrDetectedBreak, type OcrDetectedLanguage, type OcrPage, type OcrParagraph, type OcrSymbol, type OcrTextProperty, type OcrWord, 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 OutputConfig, 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 PromptFeedback, 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 Safety, 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 StabilityproxyV1EditImageRequest, type StabilityproxyV1EditImageResponse, type Statistics, StylePreset, type StylePresetWithLiterals, type SystemContentBlock, type SystemInstruction, type TaskContent, type TaskError, TaskInput, type TaskInputWithLiterals, TaskType, type TaskTypeWithLiterals, type TaskUsage, type Text, type TextAnnotation, 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 V1OutputConfig, 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, type Vertex, VideoGenModel, type VideoGenModelWithLiterals, type VideoInferenceRequest, type VideoInferenceResponse, type VideoInferenceTaskResult, type VideoInputs, type VideoJob, VideoModel, type VideoModelWithLiterals, type VisionImage, type VisionImageContext, 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 };
14631
+ 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 BoundingPoly, 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 ConductorExperimentConfig, type ConductorExperimentValue, type ConductorExperimentValueExperimentResultOneOf, 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 DetectTextRequest, type DetectTextResponse, 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, EditImageRequestModel, type EditImageRequestModelWithLiterals, type EditImageResponse, type EditImageTaskResult, type EditImageWithPromptRequest, EditImageWithPromptRequestModel, type EditImageWithPromptRequestModelWithLiterals, type EditImageWithPromptResponse, type Element, 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 FullTextAnnotation, 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 GoogleproxyV1OutputConfig, 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 InvokeCustomOpenAiModelStreamedResponse, type InvokeCustomOpenAiModelStreamedResponseChunkChoice, type InvokeCustomOpenAiModelStreamedResponseChunkChoiceChunkDelta, 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, type OcrBlock, type OcrDetectedBreak, type OcrDetectedLanguage, type OcrPage, type OcrParagraph, type OcrSymbol, type OcrTextProperty, type OcrWord, 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 OutputConfig, 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 PromptFeedback, 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 Safety, 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 StabilityproxyV1EditImageRequest, type StabilityproxyV1EditImageResponse, type Statistics, StylePreset, type StylePresetWithLiterals, type SystemContentBlock, type SystemInstruction, type TaskContent, type TaskError, TaskInput, type TaskInputWithLiterals, TaskType, type TaskTypeWithLiterals, type TaskUsage, type Text, type TextAnnotation, 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 V1InvokeCustomOpenAiModelRequest, type V1InvokeCustomOpenAiModelRequestFunctionCallOneOf, type V1InvokeCustomOpenAiModelRequestFunctionSignature, type V1InvokeCustomOpenAiModelRequestResponseFormat, type V1InvokeCustomOpenAiModelRequestTool, type V1InvokeCustomOpenAiModelResponse, type V1InvokeCustomOpenAiModelResponseChoice, type V1InvokeCustomOpenAiModelResponseCompletionTokenDetails, type V1InvokeCustomOpenAiModelResponsePromptTokenDetails, type V1InvokeCustomOpenAiModelResponseTokenUsage, type V1McpServer, type V1McpServerToolConfiguration, V1McpServerType, type V1McpServerTypeWithLiterals, V1MessageRoleRole, type V1MessageRoleRoleWithLiterals, V1Model, type V1ModelWithLiterals, type V1OpenAiResponsesRequest, type V1OpenAiResponsesResponse, type V1OutputAnnotation, type V1OutputAnnotationAnnotationTypeOneOf, type V1OutputConfig, 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, type Vertex, VideoGenModel, type VideoGenModelWithLiterals, type VideoInferenceRequest, type VideoInferenceResponse, type VideoInferenceTaskResult, type VideoInputs, type VideoJob, VideoModel, type VideoModelWithLiterals, type VisionImage, type VisionImageContext, type Vllm_proxyV1ChatCompletionMessage, type Vllm_proxyV1ChatCompletionMessageContentPart, type Vllm_proxyV1ChatCompletionMessageContentPartContentValueOneOf, type Vllm_proxyV1ChatCompletionMessageFunctionWithArgs, type Vllm_proxyV1ChatCompletionMessageImageUrlContent, Vllm_proxyV1ChatCompletionMessageMessageRole, type Vllm_proxyV1ChatCompletionMessageMessageRoleWithLiterals, type Vllm_proxyV1ChatCompletionMessageToolCall, 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 };