@wix/auto_sdk_ai-gateway_generators 1.0.62 → 1.0.63
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 +395 -7
- package/build/cjs/index.js +158 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -1
- package/build/cjs/index.typings.js +158 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +393 -7
- package/build/cjs/meta.js +158 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +395 -7
- package/build/es/index.mjs +157 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs +157 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +393 -7
- package/build/es/meta.mjs +157 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +11 -11
- package/build/internal/cjs/index.js +158 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +405 -17
- package/build/internal/cjs/index.typings.js +158 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +393 -7
- package/build/internal/cjs/meta.js +158 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +11 -11
- package/build/internal/es/index.mjs +157 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +405 -17
- package/build/internal/es/index.typings.mjs +157 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +393 -7
- package/build/internal/es/meta.mjs +157 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/index.d.mts
CHANGED
|
@@ -61,6 +61,8 @@ interface Prompt extends PromptModelRequestOneOf {
|
|
|
61
61
|
azureOpenAiResponsesRequest?: OpenAiResponsesRequest;
|
|
62
62
|
/** OpenAI video generation request */
|
|
63
63
|
openAiCreateVideoRequest?: CreateVideoRequest;
|
|
64
|
+
/** Fireworks - OpenAI payload */
|
|
65
|
+
fireworksInvokeCustomOpenAiRequest?: InvokeCustomOpenAiModelRequest;
|
|
64
66
|
/**
|
|
65
67
|
* Prompt id.
|
|
66
68
|
* @format GUID
|
|
@@ -145,6 +147,8 @@ interface PromptModelRequestOneOf {
|
|
|
145
147
|
azureOpenAiResponsesRequest?: OpenAiResponsesRequest;
|
|
146
148
|
/** OpenAI video generation request */
|
|
147
149
|
openAiCreateVideoRequest?: CreateVideoRequest;
|
|
150
|
+
/** Fireworks - OpenAI payload */
|
|
151
|
+
fireworksInvokeCustomOpenAiRequest?: InvokeCustomOpenAiModelRequest;
|
|
148
152
|
}
|
|
149
153
|
interface FallbackPromptConfig {
|
|
150
154
|
/**
|
|
@@ -381,12 +385,12 @@ interface OpenaiproxyV1ChatCompletionMessage {
|
|
|
381
385
|
* @deprecated
|
|
382
386
|
* @replacedBy tool_calls
|
|
383
387
|
*/
|
|
384
|
-
functionCall?:
|
|
388
|
+
functionCall?: V1ChatCompletionMessageFunctionWithArgs;
|
|
385
389
|
/**
|
|
386
390
|
* The tool calls generated by the model, such as function calls.
|
|
387
391
|
* @maxSize 1000
|
|
388
392
|
*/
|
|
389
|
-
toolCalls?:
|
|
393
|
+
toolCalls?: V1ChatCompletionMessageToolCall[];
|
|
390
394
|
/**
|
|
391
395
|
* Tool call that this message is responding to.
|
|
392
396
|
* @maxLength 100
|
|
@@ -401,7 +405,7 @@ interface OpenaiproxyV1ChatCompletionMessage {
|
|
|
401
405
|
*/
|
|
402
406
|
contentParts?: OpenaiproxyV1ChatCompletionMessageContentPart[];
|
|
403
407
|
}
|
|
404
|
-
interface
|
|
408
|
+
interface V1ChatCompletionMessageFunctionWithArgs {
|
|
405
409
|
/**
|
|
406
410
|
* The name of the function to call.
|
|
407
411
|
* @maxLength 64
|
|
@@ -444,7 +448,7 @@ declare enum OpenaiproxyV1ChatCompletionMessageMessageRole {
|
|
|
444
448
|
}
|
|
445
449
|
/** @enumType */
|
|
446
450
|
type OpenaiproxyV1ChatCompletionMessageMessageRoleWithLiterals = OpenaiproxyV1ChatCompletionMessageMessageRole | 'UNKNOWN' | 'USER' | 'ASSISTANT' | 'SYSTEM' | 'FUNCTION' | 'TOOL' | 'DEVELOPER';
|
|
447
|
-
interface
|
|
451
|
+
interface V1ChatCompletionMessageToolCall {
|
|
448
452
|
/**
|
|
449
453
|
* The ID of the tool call.
|
|
450
454
|
* @maxLength 100
|
|
@@ -456,7 +460,7 @@ interface ChatCompletionMessageToolCall {
|
|
|
456
460
|
*/
|
|
457
461
|
type?: string;
|
|
458
462
|
/** The function that the model called. */
|
|
459
|
-
function?:
|
|
463
|
+
function?: V1ChatCompletionMessageFunctionWithArgs;
|
|
460
464
|
}
|
|
461
465
|
interface OpenaiproxyV1ChatCompletionMessageContentPart extends OpenaiproxyV1ChatCompletionMessageContentPartContentValueOneOf {
|
|
462
466
|
/** Image_url content */
|
|
@@ -7113,6 +7117,310 @@ declare enum V1VideoModel {
|
|
|
7113
7117
|
}
|
|
7114
7118
|
/** @enumType */
|
|
7115
7119
|
type V1VideoModelWithLiterals = V1VideoModel | 'UNKNOWN_VIDEO_MODEL' | 'SORA_2' | 'SORA_2_PRO';
|
|
7120
|
+
interface InvokeCustomOpenAiModelRequest extends InvokeCustomOpenAiModelRequestFunctionCallOneOf {
|
|
7121
|
+
/** Specifying a particular function via {"name":\ "my_function"} forces the model to call that function. */
|
|
7122
|
+
forceCallFunctionCallConfig?: Record<string, any> | null;
|
|
7123
|
+
/**
|
|
7124
|
+
* "none" means the model does not call a function, and responds to the end-user.
|
|
7125
|
+
* "auto" means the model can pick between an end-user or calling a function.
|
|
7126
|
+
* "none" is the default when no functions are present. "auto" is the default if functions are present.
|
|
7127
|
+
* @maxLength 10
|
|
7128
|
+
*/
|
|
7129
|
+
defaultFunctionCallConfig?: string | null;
|
|
7130
|
+
/**
|
|
7131
|
+
* ID of the model to use.
|
|
7132
|
+
* @maxLength 10000
|
|
7133
|
+
*/
|
|
7134
|
+
modelId?: string;
|
|
7135
|
+
/**
|
|
7136
|
+
* A list of messages comprising the conversation so far.
|
|
7137
|
+
* @minSize 1
|
|
7138
|
+
* @maxSize 1000
|
|
7139
|
+
*/
|
|
7140
|
+
messages?: Fireworks_proxyV1ChatCompletionMessage[];
|
|
7141
|
+
/**
|
|
7142
|
+
* A list of functions the model may generate JSON inputs for.
|
|
7143
|
+
* @maxSize 100
|
|
7144
|
+
* @deprecated
|
|
7145
|
+
* @replacedBy tools
|
|
7146
|
+
*/
|
|
7147
|
+
functions?: InvokeCustomOpenAiModelRequestFunctionSignature[];
|
|
7148
|
+
/**
|
|
7149
|
+
* 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.
|
|
7150
|
+
* We generally recommend altering this or top_p but not both.
|
|
7151
|
+
* @max 2
|
|
7152
|
+
*/
|
|
7153
|
+
temperature?: number | null;
|
|
7154
|
+
/**
|
|
7155
|
+
* An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.
|
|
7156
|
+
* So 0.1 means only the tokens comprising the top 10% probability mass are considered.
|
|
7157
|
+
* We generally recommend altering this or temperature but not both. Defaults to 1.
|
|
7158
|
+
*/
|
|
7159
|
+
topP?: number | null;
|
|
7160
|
+
/** How many chat completion choices to generate for each input message. Defaults to 1. */
|
|
7161
|
+
n?: number | null;
|
|
7162
|
+
/**
|
|
7163
|
+
* Stream: Up to 4 sequences where the API will stop generating further tokens.
|
|
7164
|
+
* @maxSize 4
|
|
7165
|
+
* @maxLength 100
|
|
7166
|
+
*/
|
|
7167
|
+
stop?: string[];
|
|
7168
|
+
/**
|
|
7169
|
+
* The maximum number of tokens allowed for the generated answer.
|
|
7170
|
+
* By default, the number of tokens the model can return will be (4096 - prompt tokens).
|
|
7171
|
+
*/
|
|
7172
|
+
maxTokens?: number | null;
|
|
7173
|
+
/**
|
|
7174
|
+
* Number between -2.0 and 2.0.
|
|
7175
|
+
* Positive values penalize new tokens based on whether they appear in the text so far,
|
|
7176
|
+
* increasing the model's likelihood to talk about new topics.
|
|
7177
|
+
* Defaults to 0.
|
|
7178
|
+
* @min -2
|
|
7179
|
+
* @max 2
|
|
7180
|
+
*/
|
|
7181
|
+
presencePenalty?: number | null;
|
|
7182
|
+
/**
|
|
7183
|
+
* Number between -2.0 and 2.0.
|
|
7184
|
+
* Positive values penalize new tokens based on their existing frequency in the text so far,
|
|
7185
|
+
* decreasing the model's likelihood to repeat the same line verbatim.
|
|
7186
|
+
* Defaults to 0.
|
|
7187
|
+
* @min -2
|
|
7188
|
+
* @max 2
|
|
7189
|
+
*/
|
|
7190
|
+
frequencyPenalty?: number | null;
|
|
7191
|
+
/**
|
|
7192
|
+
* Modify the likelihood of specified tokens appearing in the completion.
|
|
7193
|
+
* Accepts a json object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100.
|
|
7194
|
+
* Mathematically, the bias is added to the logits generated by the model prior to sampling.
|
|
7195
|
+
* The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection;
|
|
7196
|
+
* values like -100 or 100 should result in a ban or exclusive selection of the relevant token.
|
|
7197
|
+
*/
|
|
7198
|
+
logitBias?: Record<string, number>;
|
|
7199
|
+
/**
|
|
7200
|
+
* A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse.
|
|
7201
|
+
* @maxLength 100
|
|
7202
|
+
*/
|
|
7203
|
+
user?: string | null;
|
|
7204
|
+
/**
|
|
7205
|
+
* This feature is in Beta. If specified, our system will make a best effort to sample deterministically, such that
|
|
7206
|
+
* repeated requests with the same "seed" and parameters should return the same result. Determinism is not guaranteed,
|
|
7207
|
+
* and you should refer to the "system_fingerprint" response parameter to monitor changes in the backend.
|
|
7208
|
+
*/
|
|
7209
|
+
seed?: string | null;
|
|
7210
|
+
/**
|
|
7211
|
+
* Controls which (if any) function is called by the model.
|
|
7212
|
+
* "none" means the model will not call a function and instead generates a message.
|
|
7213
|
+
* "auto" means the model can pick between generating a message or calling a function.
|
|
7214
|
+
* Specifying a particular function via {"type: "function", "function": {"name": "my_function"}} forces the model to call that function.
|
|
7215
|
+
*
|
|
7216
|
+
* "none" is the default when no functions are present. "auto" is the default if functions are present.
|
|
7217
|
+
* @maxLength 10000
|
|
7218
|
+
*/
|
|
7219
|
+
toolChoice?: string | null;
|
|
7220
|
+
/**
|
|
7221
|
+
* 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.
|
|
7222
|
+
* @maxSize 1000
|
|
7223
|
+
*/
|
|
7224
|
+
tools?: InvokeCustomOpenAiModelRequestTool[];
|
|
7225
|
+
/**
|
|
7226
|
+
* An object specifying the format that the model must output. Compatible with gpt-4-1106-preview and gpt-3.5-turbo-1106.
|
|
7227
|
+
* Setting to type to "json_object" enables JSON mode, which guarantees the message the model generates is valid JSON.
|
|
7228
|
+
* Important: when using JSON mode, you must also instruct the model to produce JSON yourself via a system or user message.
|
|
7229
|
+
* Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit,
|
|
7230
|
+
* resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if finish_reason="length",
|
|
7231
|
+
* which indicates the generation exceeded max_tokens or the conversation exceeded the max context length.
|
|
7232
|
+
*/
|
|
7233
|
+
responseFormat?: InvokeCustomOpenAiModelRequestResponseFormat;
|
|
7234
|
+
/**
|
|
7235
|
+
* An upper bound for the number of tokens that can be generated for a completion,
|
|
7236
|
+
* including visible output tokens and reasoning tokens.
|
|
7237
|
+
*/
|
|
7238
|
+
maxCompletionTokens?: number | null;
|
|
7239
|
+
/**
|
|
7240
|
+
* Constrains effort on reasoning for reasoning models. Currently supported values are low, medium, and high.
|
|
7241
|
+
* Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
7242
|
+
* o1 models only
|
|
7243
|
+
* @maxLength 100
|
|
7244
|
+
*/
|
|
7245
|
+
reasoningEffort?: string | null;
|
|
7246
|
+
/** Whether to enable parallel function calling during tool use. */
|
|
7247
|
+
parallelToolCalls?: boolean | null;
|
|
7248
|
+
/**
|
|
7249
|
+
* Constrains the verbosity of the model's response. Lower values will result in more concise responses,
|
|
7250
|
+
* while higher values will result in more verbose responses.
|
|
7251
|
+
* Currently supported values are low, medium, and high.
|
|
7252
|
+
* @maxLength 100
|
|
7253
|
+
*/
|
|
7254
|
+
verbosity?: string | null;
|
|
7255
|
+
}
|
|
7256
|
+
/** @oneof */
|
|
7257
|
+
interface InvokeCustomOpenAiModelRequestFunctionCallOneOf {
|
|
7258
|
+
/** Specifying a particular function via {"name":\ "my_function"} forces the model to call that function. */
|
|
7259
|
+
forceCallFunctionCallConfig?: Record<string, any> | null;
|
|
7260
|
+
/**
|
|
7261
|
+
* "none" means the model does not call a function, and responds to the end-user.
|
|
7262
|
+
* "auto" means the model can pick between an end-user or calling a function.
|
|
7263
|
+
* "none" is the default when no functions are present. "auto" is the default if functions are present.
|
|
7264
|
+
* @maxLength 10
|
|
7265
|
+
*/
|
|
7266
|
+
defaultFunctionCallConfig?: string | null;
|
|
7267
|
+
}
|
|
7268
|
+
interface InvokeCustomOpenAiModelRequestFunctionSignature {
|
|
7269
|
+
/**
|
|
7270
|
+
* The name of the function to be called.
|
|
7271
|
+
* @maxLength 64
|
|
7272
|
+
*/
|
|
7273
|
+
name?: string | null;
|
|
7274
|
+
/**
|
|
7275
|
+
* The description of what the function does.
|
|
7276
|
+
* @maxLength 100000
|
|
7277
|
+
*/
|
|
7278
|
+
description?: string | null;
|
|
7279
|
+
/** The parameters the functions accepts, described as a JSON Schema object. */
|
|
7280
|
+
parameters?: Record<string, any> | null;
|
|
7281
|
+
/** If true, the model will strictly follow the function parameters schema (a.k.a. open-ai structured outputs). */
|
|
7282
|
+
strict?: boolean | null;
|
|
7283
|
+
}
|
|
7284
|
+
interface Fireworks_proxyV1ChatCompletionMessage {
|
|
7285
|
+
/** The role of the message author. */
|
|
7286
|
+
role?: Fireworks_proxyV1ChatCompletionMessageMessageRoleWithLiterals;
|
|
7287
|
+
/**
|
|
7288
|
+
* The contents of the message. content is required for all messages, and may be null for assistant messages with function calls.
|
|
7289
|
+
* @maxLength 1000000000
|
|
7290
|
+
*/
|
|
7291
|
+
content?: string | null;
|
|
7292
|
+
/**
|
|
7293
|
+
* The name of the author of this message. name is required if role is function, and it should be the name of
|
|
7294
|
+
* 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.
|
|
7295
|
+
* @minLength 1
|
|
7296
|
+
* @maxLength 64
|
|
7297
|
+
*/
|
|
7298
|
+
name?: string | null;
|
|
7299
|
+
/**
|
|
7300
|
+
* The name and arguments of a function that should be called, as generated by the model.
|
|
7301
|
+
* The name and arguments of a function that should be called, as generated by the model.
|
|
7302
|
+
* @deprecated
|
|
7303
|
+
* @replacedBy tool_calls
|
|
7304
|
+
*/
|
|
7305
|
+
functionCall?: ChatCompletionMessageFunctionWithArgs;
|
|
7306
|
+
/**
|
|
7307
|
+
* The tool calls generated by the model, such as function calls.
|
|
7308
|
+
* @maxSize 1000
|
|
7309
|
+
*/
|
|
7310
|
+
toolCalls?: ChatCompletionMessageToolCall[];
|
|
7311
|
+
/**
|
|
7312
|
+
* Tool call that this message is responding to.
|
|
7313
|
+
* @maxLength 100
|
|
7314
|
+
*/
|
|
7315
|
+
toolCallId?: string | null;
|
|
7316
|
+
/**
|
|
7317
|
+
* An array of content parts with a defined type,each can be of type text or image_url when passing in images.
|
|
7318
|
+
* If defined, content field will be ignored.
|
|
7319
|
+
* You can pass multiple images by adding multiple image_url content parts.
|
|
7320
|
+
* Image input is only supported when using the gpt-4-visual-preview model.
|
|
7321
|
+
* @maxSize 5
|
|
7322
|
+
*/
|
|
7323
|
+
contentParts?: Fireworks_proxyV1ChatCompletionMessageContentPart[];
|
|
7324
|
+
}
|
|
7325
|
+
interface ChatCompletionMessageFunctionWithArgs {
|
|
7326
|
+
/**
|
|
7327
|
+
* The name of the function to call.
|
|
7328
|
+
* @maxLength 64
|
|
7329
|
+
*/
|
|
7330
|
+
name?: string | null;
|
|
7331
|
+
/**
|
|
7332
|
+
* The arguments to call the function with, as generated by the model in JSON format.
|
|
7333
|
+
* Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by
|
|
7334
|
+
* your function schema. Validate the arguments in your code before calling your function.
|
|
7335
|
+
* @maxLength 1000000
|
|
7336
|
+
*/
|
|
7337
|
+
arguments?: string | null;
|
|
7338
|
+
}
|
|
7339
|
+
interface Fireworks_proxyV1ChatCompletionMessageImageUrlContent {
|
|
7340
|
+
/**
|
|
7341
|
+
* The URL of the image, must be a valid wix-mp URL.
|
|
7342
|
+
* @maxLength 100000
|
|
7343
|
+
*/
|
|
7344
|
+
url?: string | null;
|
|
7345
|
+
/**
|
|
7346
|
+
* By controlling the detail parameter, which has three options, low, high, or auto,
|
|
7347
|
+
* you have control over how the model processes the image and generates its textual understanding.
|
|
7348
|
+
* more info and cost calculation : https://platform.openai.com/docs/guides/vision/low-or-high-fidelity-image-understanding
|
|
7349
|
+
* @maxLength 100
|
|
7350
|
+
*/
|
|
7351
|
+
detail?: string | null;
|
|
7352
|
+
}
|
|
7353
|
+
declare enum Fireworks_proxyV1ChatCompletionMessageMessageRole {
|
|
7354
|
+
UNKNOWN = "UNKNOWN",
|
|
7355
|
+
USER = "USER",
|
|
7356
|
+
ASSISTANT = "ASSISTANT",
|
|
7357
|
+
SYSTEM = "SYSTEM",
|
|
7358
|
+
FUNCTION = "FUNCTION",
|
|
7359
|
+
TOOL = "TOOL",
|
|
7360
|
+
/**
|
|
7361
|
+
* Developer-provided instructions that the model should follow, regardless of messages sent by the user.
|
|
7362
|
+
* With o1 models and newer, developer messages replace the previous system messages.
|
|
7363
|
+
*/
|
|
7364
|
+
DEVELOPER = "DEVELOPER"
|
|
7365
|
+
}
|
|
7366
|
+
/** @enumType */
|
|
7367
|
+
type Fireworks_proxyV1ChatCompletionMessageMessageRoleWithLiterals = Fireworks_proxyV1ChatCompletionMessageMessageRole | 'UNKNOWN' | 'USER' | 'ASSISTANT' | 'SYSTEM' | 'FUNCTION' | 'TOOL' | 'DEVELOPER';
|
|
7368
|
+
interface ChatCompletionMessageToolCall {
|
|
7369
|
+
/**
|
|
7370
|
+
* The ID of the tool call.
|
|
7371
|
+
* @maxLength 100
|
|
7372
|
+
*/
|
|
7373
|
+
_id?: string;
|
|
7374
|
+
/**
|
|
7375
|
+
* The type of the tool. Currently, only function is supported.
|
|
7376
|
+
* @maxLength 100
|
|
7377
|
+
*/
|
|
7378
|
+
type?: string;
|
|
7379
|
+
/** The function that the model called. */
|
|
7380
|
+
function?: ChatCompletionMessageFunctionWithArgs;
|
|
7381
|
+
}
|
|
7382
|
+
interface Fireworks_proxyV1ChatCompletionMessageContentPart extends Fireworks_proxyV1ChatCompletionMessageContentPartContentValueOneOf {
|
|
7383
|
+
/** Image_url content */
|
|
7384
|
+
imageUrl?: Fireworks_proxyV1ChatCompletionMessageImageUrlContent;
|
|
7385
|
+
/**
|
|
7386
|
+
* Text content
|
|
7387
|
+
* @maxLength 1000000000
|
|
7388
|
+
*/
|
|
7389
|
+
text?: string | null;
|
|
7390
|
+
/**
|
|
7391
|
+
* The type of the content part. Can be text or image_url.
|
|
7392
|
+
* @maxLength 100
|
|
7393
|
+
*/
|
|
7394
|
+
type?: string | null;
|
|
7395
|
+
}
|
|
7396
|
+
/** @oneof */
|
|
7397
|
+
interface Fireworks_proxyV1ChatCompletionMessageContentPartContentValueOneOf {
|
|
7398
|
+
/** Image_url content */
|
|
7399
|
+
imageUrl?: Fireworks_proxyV1ChatCompletionMessageImageUrlContent;
|
|
7400
|
+
/**
|
|
7401
|
+
* Text content
|
|
7402
|
+
* @maxLength 1000000000
|
|
7403
|
+
*/
|
|
7404
|
+
text?: string | null;
|
|
7405
|
+
}
|
|
7406
|
+
interface InvokeCustomOpenAiModelRequestTool {
|
|
7407
|
+
/**
|
|
7408
|
+
* The type of the tool. Currently, only "function" is supported.
|
|
7409
|
+
* @maxLength 100
|
|
7410
|
+
*/
|
|
7411
|
+
type?: string;
|
|
7412
|
+
/** Function definition object. */
|
|
7413
|
+
function?: InvokeCustomOpenAiModelRequestFunctionSignature;
|
|
7414
|
+
}
|
|
7415
|
+
interface InvokeCustomOpenAiModelRequestResponseFormat {
|
|
7416
|
+
/**
|
|
7417
|
+
* Must be one of text, json_object or json_schema.
|
|
7418
|
+
* @maxLength 100
|
|
7419
|
+
*/
|
|
7420
|
+
type?: string | null;
|
|
7421
|
+
/** The schema object describes the output object for the model. Currently, only the JSON Schema Object is supported. */
|
|
7422
|
+
schema?: Record<string, any> | null;
|
|
7423
|
+
}
|
|
7116
7424
|
interface ContentGenerationRequestedEvent {
|
|
7117
7425
|
/** Prompt that the generation was requested for. */
|
|
7118
7426
|
prompt?: Prompt;
|
|
@@ -7226,6 +7534,8 @@ interface GenerateContentModelResponse extends GenerateContentModelResponseRespo
|
|
|
7226
7534
|
azureOpenAiResponsesResponse?: OpenAiResponsesResponse;
|
|
7227
7535
|
/** OpenAI video generation response */
|
|
7228
7536
|
openAiCreateVideoResponse?: CreateVideoResponse;
|
|
7537
|
+
/** Fireworks - OpenAI payload */
|
|
7538
|
+
fireworksInvokeCustomOpenAiResponse?: InvokeCustomOpenAiModelResponse;
|
|
7229
7539
|
/** Extracted generated content data from the model's response. */
|
|
7230
7540
|
generatedContent?: GeneratedContent;
|
|
7231
7541
|
/** Extracted cost of the request in microcents. */
|
|
@@ -7299,6 +7609,8 @@ interface GenerateContentModelResponseResponseOneOf {
|
|
|
7299
7609
|
azureOpenAiResponsesResponse?: OpenAiResponsesResponse;
|
|
7300
7610
|
/** OpenAI video generation response */
|
|
7301
7611
|
openAiCreateVideoResponse?: CreateVideoResponse;
|
|
7612
|
+
/** Fireworks - OpenAI payload */
|
|
7613
|
+
fireworksInvokeCustomOpenAiResponse?: InvokeCustomOpenAiModelResponse;
|
|
7302
7614
|
}
|
|
7303
7615
|
/** Model generation result, at least one of the fields should be present */
|
|
7304
7616
|
interface GeneratedContent {
|
|
@@ -9184,6 +9496,76 @@ interface ErrorInfo {
|
|
|
9184
9496
|
*/
|
|
9185
9497
|
message?: string | null;
|
|
9186
9498
|
}
|
|
9499
|
+
interface InvokeCustomOpenAiModelResponse {
|
|
9500
|
+
/**
|
|
9501
|
+
* A unique identifier for the chat completion.
|
|
9502
|
+
* @maxLength 100
|
|
9503
|
+
*/
|
|
9504
|
+
responseId?: string | null;
|
|
9505
|
+
/**
|
|
9506
|
+
* Description of the response object. Will be equal to "chat.completion" for chat completion.
|
|
9507
|
+
* @maxLength 100
|
|
9508
|
+
*/
|
|
9509
|
+
object?: string | null;
|
|
9510
|
+
/** Timestamp for when the response was created. */
|
|
9511
|
+
created?: number | null;
|
|
9512
|
+
/**
|
|
9513
|
+
* Model that produced the completion.
|
|
9514
|
+
* @maxLength 10000
|
|
9515
|
+
*/
|
|
9516
|
+
modelId?: string;
|
|
9517
|
+
/** A list of chat completion choices. Can be more than one if n is greater than 1. */
|
|
9518
|
+
choices?: InvokeCustomOpenAiModelResponseChoice[];
|
|
9519
|
+
/** TokenUsage object describing the tokens usage per request. */
|
|
9520
|
+
usage?: InvokeCustomOpenAiModelResponseTokenUsage;
|
|
9521
|
+
/** Cost of the request in microcents. */
|
|
9522
|
+
microcentsSpent?: string | null;
|
|
9523
|
+
/**
|
|
9524
|
+
* This fingerprint represents the backend configuration that the model runs with.
|
|
9525
|
+
* Can be used in conjunction with the seed request parameter to understand when backend changes have been made that might impact determinism.
|
|
9526
|
+
* @maxLength 10000
|
|
9527
|
+
*/
|
|
9528
|
+
systemFingerprint?: string | null;
|
|
9529
|
+
}
|
|
9530
|
+
interface InvokeCustomOpenAiModelResponsePromptTokenDetails {
|
|
9531
|
+
/** Audio input tokens present in the prompt. */
|
|
9532
|
+
audioTokens?: number | null;
|
|
9533
|
+
/** Cached tokens present in the prompt. */
|
|
9534
|
+
cachedTokens?: number | null;
|
|
9535
|
+
}
|
|
9536
|
+
interface InvokeCustomOpenAiModelResponseCompletionTokenDetails {
|
|
9537
|
+
/** Reasoning tokens present in the completion. */
|
|
9538
|
+
reasoningTokens?: number | null;
|
|
9539
|
+
/** Audio tokens present in the completion. */
|
|
9540
|
+
audioTokens?: number | null;
|
|
9541
|
+
/** Accepted prediction tokens. */
|
|
9542
|
+
acceptedPredictionTokens?: number | null;
|
|
9543
|
+
/** Rejected prediction tokens. */
|
|
9544
|
+
rejectedPredictionTokens?: number | null;
|
|
9545
|
+
}
|
|
9546
|
+
interface InvokeCustomOpenAiModelResponseChoice {
|
|
9547
|
+
/** Index of this Choice in choices array. */
|
|
9548
|
+
index?: number | null;
|
|
9549
|
+
/** ChatCompletionMessage object that defines the message. */
|
|
9550
|
+
message?: Fireworks_proxyV1ChatCompletionMessage;
|
|
9551
|
+
/**
|
|
9552
|
+
* Reason why the message generation was stopped.
|
|
9553
|
+
* @maxLength 100
|
|
9554
|
+
*/
|
|
9555
|
+
finishReason?: string | null;
|
|
9556
|
+
}
|
|
9557
|
+
interface InvokeCustomOpenAiModelResponseTokenUsage {
|
|
9558
|
+
/** Number of LLM tokens required to encode input. */
|
|
9559
|
+
inputTokens?: number | null;
|
|
9560
|
+
/** Number of LLM tokens required to encode output. */
|
|
9561
|
+
outputTokens?: number | null;
|
|
9562
|
+
/** Total number of LLM tokens used for the request. */
|
|
9563
|
+
totalTokens?: number | null;
|
|
9564
|
+
/** Breakdown of tokens used in the prompt. */
|
|
9565
|
+
promptTokenDetails?: InvokeCustomOpenAiModelResponsePromptTokenDetails;
|
|
9566
|
+
/** Breakdown of tokens used in the completion. */
|
|
9567
|
+
completionTokenDetails?: InvokeCustomOpenAiModelResponseCompletionTokenDetails;
|
|
9568
|
+
}
|
|
9187
9569
|
interface ContentGenerationFailedEvent {
|
|
9188
9570
|
/**
|
|
9189
9571
|
* Error message that content generation failed with.
|
|
@@ -9375,6 +9757,8 @@ interface ModelResponse extends ModelResponseResponseOneOf {
|
|
|
9375
9757
|
mlPlatformOpenAiRawResponse?: InvokeMlPlatformOpenAIChatCompletionRawResponse;
|
|
9376
9758
|
/** Open AI Responses API response */
|
|
9377
9759
|
openAiResponsesResponse?: V1OpenAiResponsesResponse;
|
|
9760
|
+
/** Fireworks - OpenAI payload */
|
|
9761
|
+
fireworksInvokeCustomOpenAiResponse?: InvokeCustomOpenAiModelResponse;
|
|
9378
9762
|
/**
|
|
9379
9763
|
* Extracted generated text messages from the model's response.
|
|
9380
9764
|
* @maxSize 100
|
|
@@ -9414,6 +9798,8 @@ interface ModelResponseResponseOneOf {
|
|
|
9414
9798
|
mlPlatformOpenAiRawResponse?: InvokeMlPlatformOpenAIChatCompletionRawResponse;
|
|
9415
9799
|
/** Open AI Responses API response */
|
|
9416
9800
|
openAiResponsesResponse?: V1OpenAiResponsesResponse;
|
|
9801
|
+
/** Fireworks - OpenAI payload */
|
|
9802
|
+
fireworksInvokeCustomOpenAiResponse?: InvokeCustomOpenAiModelResponse;
|
|
9417
9803
|
}
|
|
9418
9804
|
interface GenerationRequestedEvent {
|
|
9419
9805
|
/** Prompt that the generation was requested for. */
|
|
@@ -9607,7 +9993,7 @@ interface ChunkChoiceChunkDelta {
|
|
|
9607
9993
|
* Tool call requested by the model. Function arguments can be partial jsons and have to be assembled manually.
|
|
9608
9994
|
* @maxSize 100
|
|
9609
9995
|
*/
|
|
9610
|
-
toolCalls?:
|
|
9996
|
+
toolCalls?: V1ChatCompletionMessageToolCall[];
|
|
9611
9997
|
}
|
|
9612
9998
|
interface ChatCompletionChunkChunkChoice {
|
|
9613
9999
|
/** A chat completion delta generated by streamed model responses */
|
|
@@ -12586,6 +12972,8 @@ interface PublishPromptOptions {
|
|
|
12586
12972
|
azureOpenAiResponsesRequest?: OpenAiResponsesRequest;
|
|
12587
12973
|
/** OpenAI video generation request */
|
|
12588
12974
|
openAiCreateVideoRequest?: CreateVideoRequest;
|
|
12975
|
+
/** Fireworks - OpenAI payload */
|
|
12976
|
+
fireworksInvokeCustomOpenAiRequest?: InvokeCustomOpenAiModelRequest;
|
|
12589
12977
|
/**
|
|
12590
12978
|
* Prompt id.
|
|
12591
12979
|
* @format GUID
|
|
@@ -12683,4 +13071,4 @@ interface PollImageGenerationResultOptionsRequestOneOf {
|
|
|
12683
13071
|
openAiGetVideoResultRequest?: GetVideoResultRequest;
|
|
12684
13072
|
}
|
|
12685
13073
|
|
|
12686
|
-
export { type AccountInfo, type Action, type ActionEvent, type AlignmentInfoInChunk, type AnthropicClaudeMessage, type AnthropicMessage, AnthropicModel, type AnthropicModelWithLiterals, type AnthropicStreamChunk, type AnthropicStreamChunkContentOneOf, type AnthropicStreamChunkMessageDelta, 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 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 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 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 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 DocumentContent, type DocumentSource, type DomainEvent, type DomainEventBodyOneOf, 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 FallbackPromptConfig, type FallbackProperties, type FileContent, type FileInput, type FineTuningSpec, FinishReason, type FinishReasonWithLiterals, type FloatEmbedding, type FluxDevControlnet, type FluxPulid, type FrameImage, type FunctionCall, type FunctionCallingConfig, type FunctionDeclaration, type FunctionResponse, 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 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, ImageEditingModel, type ImageEditingModelWithLiterals, type ImageEditingRequest, type ImageEditingResponse, 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 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 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, 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 ServerToolUse, type Shadow, type SimpleContentBlock, type SimpleContentBlockTypeOneOf, type SpeechChunk, SpeechModel, type SpeechModelWithLiterals, type SpiGenerationConfig, type Statistics, StylePreset, type StylePresetWithLiterals, type SystemContentBlock, type SystemInstruction, TaskInput, type TaskInputWithLiterals, TaskType, type TaskTypeWithLiterals, 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 V1ChatCompletionMessage, type V1ChatCompletionMessageContentPart, type V1ChatCompletionMessageContentPartContentValueOneOf, type V1ChatCompletionMessageImageUrlContent, V1ChatCompletionMessageMessageRole, type V1ChatCompletionMessageMessageRoleWithLiterals, 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 V1GetResultRequest, type V1GetResultResponse, type V1ImageInput, V1ImageMediaTypeMediaType, type V1ImageMediaTypeMediaTypeWithLiterals, V1ImageModel, type V1ImageModelWithLiterals, type V1ImageObject, type V1ImageUrl, 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 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 };
|
|
13074
|
+
export { type AccountInfo, type Action, type ActionEvent, type AlignmentInfoInChunk, type AnthropicClaudeMessage, type AnthropicMessage, AnthropicModel, type AnthropicModelWithLiterals, type AnthropicStreamChunk, type AnthropicStreamChunkContentOneOf, type AnthropicStreamChunkMessageDelta, 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 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 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 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 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 DocumentContent, type DocumentSource, type DomainEvent, type DomainEventBodyOneOf, 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 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 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 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, ImageEditingModel, type ImageEditingModelWithLiterals, type ImageEditingRequest, type ImageEditingResponse, 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 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, 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 ServerToolUse, type Shadow, type SimpleContentBlock, type SimpleContentBlockTypeOneOf, type SpeechChunk, SpeechModel, type SpeechModelWithLiterals, type SpiGenerationConfig, type Statistics, StylePreset, type StylePresetWithLiterals, type SystemContentBlock, type SystemInstruction, TaskInput, type TaskInputWithLiterals, TaskType, type TaskTypeWithLiterals, 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 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 V1GetResultRequest, type V1GetResultResponse, type V1ImageInput, V1ImageMediaTypeMediaType, type V1ImageMediaTypeMediaTypeWithLiterals, V1ImageModel, type V1ImageModelWithLiterals, type V1ImageObject, type V1ImageUrl, 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 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 };
|