@wix/auto_sdk_ai-gateway_generators 1.0.112 → 1.0.113
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 +120 -1
- package/build/cjs/index.js +17 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -1
- package/build/cjs/index.typings.js +17 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +112 -1
- package/build/cjs/meta.js +11 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +120 -1
- package/build/es/index.mjs +16 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs +16 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +112 -1
- package/build/es/meta.mjs +10 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +17 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +121 -2
- package/build/internal/cjs/index.typings.js +17 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +112 -1
- package/build/internal/cjs/meta.js +11 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +16 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +121 -2
- package/build/internal/es/index.typings.mjs +16 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +112 -1
- package/build/internal/es/meta.mjs +10 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -11533,6 +11533,8 @@ interface GenerateEmbeddingsRequest extends GenerateEmbeddingsRequestEmbeddingRe
|
|
|
11533
11533
|
azureEmbeddingsRequest?: CreateEmbeddingsRequest;
|
|
11534
11534
|
/** Google Vertex Embeddings Request */
|
|
11535
11535
|
googleEmbeddingsRequest?: GetEmbeddingRequest;
|
|
11536
|
+
/** Google multimodal embedContent Request (gemini-embedding-2) */
|
|
11537
|
+
googleEmbedContentRequest?: EmbedContentRequest;
|
|
11536
11538
|
/** Contains additional information for the request, such as interaction ID and additional tags (comma-separated string). */
|
|
11537
11539
|
userRequestInfo?: UserRequestInfo;
|
|
11538
11540
|
}
|
|
@@ -11544,6 +11546,8 @@ interface GenerateEmbeddingsRequestEmbeddingRequestOneOf {
|
|
|
11544
11546
|
azureEmbeddingsRequest?: CreateEmbeddingsRequest;
|
|
11545
11547
|
/** Google Vertex Embeddings Request */
|
|
11546
11548
|
googleEmbeddingsRequest?: GetEmbeddingRequest;
|
|
11549
|
+
/** Google multimodal embedContent Request (gemini-embedding-2) */
|
|
11550
|
+
googleEmbedContentRequest?: EmbedContentRequest;
|
|
11547
11551
|
}
|
|
11548
11552
|
interface V1CreateEmbeddingsRequest {
|
|
11549
11553
|
/**
|
|
@@ -11695,6 +11699,61 @@ interface TextEmbeddingParameters {
|
|
|
11695
11699
|
/** Optional: When set to true, input text will be truncated. When set to false, an error is returned if the input text is longer than the maximum length supported by the model. Defaults to true. */
|
|
11696
11700
|
autoTruncate?: boolean;
|
|
11697
11701
|
}
|
|
11702
|
+
/**
|
|
11703
|
+
* Request for generating a single multimodal embedding via the embedContent endpoint.
|
|
11704
|
+
* All parts across all contents are fused into one embedding (Vertex exposes only
|
|
11705
|
+
* single-content embedContent, no batchEmbedContents).
|
|
11706
|
+
*/
|
|
11707
|
+
interface EmbedContentRequest {
|
|
11708
|
+
/** The model to use for generating the embedding. */
|
|
11709
|
+
model?: EmbedContentModelWithLiterals;
|
|
11710
|
+
/**
|
|
11711
|
+
* The content to embed. Only embeddable parts are accepted (text or media);
|
|
11712
|
+
* unlike GenerateContent, there is no support for tools, function calls, thoughts, etc.
|
|
11713
|
+
* Task-type instructions (e.g. "task: search result | query: ...") should be
|
|
11714
|
+
* placed inside the text part by the caller; there is no task_type field.
|
|
11715
|
+
* @minSize 1
|
|
11716
|
+
* @maxSize 1000
|
|
11717
|
+
*/
|
|
11718
|
+
contents?: EmbedContentInput[];
|
|
11719
|
+
/**
|
|
11720
|
+
* Optional: truncates the output embedding to the given size (128-3072).
|
|
11721
|
+
* Truncated dimensions are auto-normalized by gemini-embedding-2.
|
|
11722
|
+
*/
|
|
11723
|
+
outputDimensionality?: number | null;
|
|
11724
|
+
}
|
|
11725
|
+
/**
|
|
11726
|
+
* Multimodal embedding models served via the Vertex AI embedContent endpoint.
|
|
11727
|
+
* Kept separate from EmbeddingModel (which targets the legacy :predict endpoint).
|
|
11728
|
+
*/
|
|
11729
|
+
declare enum EmbedContentModel {
|
|
11730
|
+
UNKNOWN_EMBED_CONTENT_MODEL = "UNKNOWN_EMBED_CONTENT_MODEL",
|
|
11731
|
+
/** First natively multimodal embedding model (text, image, audio, video, PDF). */
|
|
11732
|
+
GEMINI_EMBEDDING_2 = "GEMINI_EMBEDDING_2"
|
|
11733
|
+
}
|
|
11734
|
+
/** @enumType */
|
|
11735
|
+
type EmbedContentModelWithLiterals = EmbedContentModel | 'UNKNOWN_EMBED_CONTENT_MODEL' | 'GEMINI_EMBEDDING_2';
|
|
11736
|
+
/** A single embeddable input, mirroring the embedContent `content` object. */
|
|
11737
|
+
interface EmbedContentInput {
|
|
11738
|
+
/**
|
|
11739
|
+
* Ordered parts to embed. Parts may mix text and media (image/audio/video/PDF).
|
|
11740
|
+
* @minSize 1
|
|
11741
|
+
* @maxSize 1000
|
|
11742
|
+
*/
|
|
11743
|
+
parts?: EmbedContentPart[];
|
|
11744
|
+
}
|
|
11745
|
+
/** A single embeddable part. Exactly one field should be set. */
|
|
11746
|
+
interface EmbedContentPart {
|
|
11747
|
+
/**
|
|
11748
|
+
* The text to embed.
|
|
11749
|
+
* @maxLength 1000000000
|
|
11750
|
+
*/
|
|
11751
|
+
text?: string | null;
|
|
11752
|
+
/** Media to embed, provided by URL (a valid wix mp or wix static URL). */
|
|
11753
|
+
contentData?: ContentData;
|
|
11754
|
+
/** Inline media bytes to embed (fetched from the passed URL in the request). */
|
|
11755
|
+
inlineData?: Blob;
|
|
11756
|
+
}
|
|
11698
11757
|
interface GenerateEmbeddingsResponse extends GenerateEmbeddingsResponseEmbeddingResponseOneOf {
|
|
11699
11758
|
/** OpenAi Embeddings Response */
|
|
11700
11759
|
openAiEmbeddingsResponse?: V1CreateEmbeddingsResponse;
|
|
@@ -11702,6 +11761,8 @@ interface GenerateEmbeddingsResponse extends GenerateEmbeddingsResponseEmbedding
|
|
|
11702
11761
|
azureEmbeddingsResponse?: CreateEmbeddingsResponse;
|
|
11703
11762
|
/** Google Vertex Embeddings Response */
|
|
11704
11763
|
googleEmbeddingsResponse?: GetEmbeddingResponse;
|
|
11764
|
+
/** Google multimodal embedContent Response (gemini-embedding-2) */
|
|
11765
|
+
googleEmbedContentResponse?: EmbedContentResponse;
|
|
11705
11766
|
}
|
|
11706
11767
|
/** @oneof */
|
|
11707
11768
|
interface GenerateEmbeddingsResponseEmbeddingResponseOneOf {
|
|
@@ -11711,6 +11772,8 @@ interface GenerateEmbeddingsResponseEmbeddingResponseOneOf {
|
|
|
11711
11772
|
azureEmbeddingsResponse?: CreateEmbeddingsResponse;
|
|
11712
11773
|
/** Google Vertex Embeddings Response */
|
|
11713
11774
|
googleEmbeddingsResponse?: GetEmbeddingResponse;
|
|
11775
|
+
/** Google multimodal embedContent Response (gemini-embedding-2) */
|
|
11776
|
+
googleEmbedContentResponse?: EmbedContentResponse;
|
|
11714
11777
|
}
|
|
11715
11778
|
interface V1CreateEmbeddingsResponse {
|
|
11716
11779
|
/**
|
|
@@ -11857,6 +11920,30 @@ interface Statistics {
|
|
|
11857
11920
|
/** Truncation indicator */
|
|
11858
11921
|
truncated?: boolean | null;
|
|
11859
11922
|
}
|
|
11923
|
+
/** Response containing the generated multimodal embedding. */
|
|
11924
|
+
interface EmbedContentResponse {
|
|
11925
|
+
/** The generated embedding. */
|
|
11926
|
+
embedding?: ContentEmbedding;
|
|
11927
|
+
/** Cost of the request in micro cents. */
|
|
11928
|
+
microcentsSpent?: string | null;
|
|
11929
|
+
/** Statistics about the generation. */
|
|
11930
|
+
statistics?: EmbedContentStatistics;
|
|
11931
|
+
}
|
|
11932
|
+
/** A single content embedding. */
|
|
11933
|
+
interface ContentEmbedding {
|
|
11934
|
+
/**
|
|
11935
|
+
* The generated embedding values.
|
|
11936
|
+
* @maxSize 10000
|
|
11937
|
+
*/
|
|
11938
|
+
values?: number[];
|
|
11939
|
+
}
|
|
11940
|
+
/** Statistics about an embedContent generation. */
|
|
11941
|
+
interface EmbedContentStatistics {
|
|
11942
|
+
/** Number of tokens processed across all modalities. */
|
|
11943
|
+
tokenCount?: number | null;
|
|
11944
|
+
/** Truncation indicator. */
|
|
11945
|
+
truncated?: boolean | null;
|
|
11946
|
+
}
|
|
11860
11947
|
interface GenerateTextByProjectRequest {
|
|
11861
11948
|
/**
|
|
11862
11949
|
* Id of the Project that will be used to facilitate text generation request.
|
|
@@ -14191,6 +14278,8 @@ interface PollImageGenerationResultRequest extends PollImageGenerationResultRequ
|
|
|
14191
14278
|
openAiGetVideoResultRequest?: GetVideoResultRequest;
|
|
14192
14279
|
/** Bytedance getContentTask request */
|
|
14193
14280
|
bytedanceGetContentTaskRequest?: GetContentTaskRequest;
|
|
14281
|
+
/** Fal schemaless proxy GetQueueResult request */
|
|
14282
|
+
falGetQueueResultRequest?: FalGetQueueResultRequest;
|
|
14194
14283
|
/** Contains additional information for the request. */
|
|
14195
14284
|
userRequestInfo?: UserRequestInfo;
|
|
14196
14285
|
}
|
|
@@ -14206,6 +14295,8 @@ interface PollImageGenerationResultRequestRequestOneOf {
|
|
|
14206
14295
|
openAiGetVideoResultRequest?: GetVideoResultRequest;
|
|
14207
14296
|
/** Bytedance getContentTask request */
|
|
14208
14297
|
bytedanceGetContentTaskRequest?: GetContentTaskRequest;
|
|
14298
|
+
/** Fal schemaless proxy GetQueueResult request */
|
|
14299
|
+
falGetQueueResultRequest?: FalGetQueueResultRequest;
|
|
14209
14300
|
}
|
|
14210
14301
|
interface V1GetResultRequest {
|
|
14211
14302
|
/**
|
|
@@ -14242,6 +14333,18 @@ interface GetContentTaskRequest {
|
|
|
14242
14333
|
*/
|
|
14243
14334
|
taskId?: string;
|
|
14244
14335
|
}
|
|
14336
|
+
interface FalGetQueueResultRequest {
|
|
14337
|
+
/**
|
|
14338
|
+
* Model ID that Gateway will add to the queue result proxy URL.
|
|
14339
|
+
* @maxLength 1000
|
|
14340
|
+
*/
|
|
14341
|
+
modelId?: string;
|
|
14342
|
+
/**
|
|
14343
|
+
* Queue request ID whose result should be polled.
|
|
14344
|
+
* @maxLength 1000
|
|
14345
|
+
*/
|
|
14346
|
+
requestId?: string;
|
|
14347
|
+
}
|
|
14245
14348
|
interface PollImageGenerationResultResponse extends PollImageGenerationResultResponseResponseOneOf {
|
|
14246
14349
|
/** replicate proxy getResult response */
|
|
14247
14350
|
replicateGetResultResponse?: V1GetResultResponse;
|
|
@@ -14253,6 +14356,8 @@ interface PollImageGenerationResultResponse extends PollImageGenerationResultRes
|
|
|
14253
14356
|
openAiGetVideoResultResponse?: GetVideoResultResponse;
|
|
14254
14357
|
/** Bytedance getContentTask response */
|
|
14255
14358
|
bytedanceGetContentTaskResponse?: GetContentTaskResponse;
|
|
14359
|
+
/** Fal schemaless proxy GetQueueResult response */
|
|
14360
|
+
falGetQueueResultResponse?: FalGetQueueResultResponse;
|
|
14256
14361
|
}
|
|
14257
14362
|
/** @oneof */
|
|
14258
14363
|
interface PollImageGenerationResultResponseResponseOneOf {
|
|
@@ -14266,6 +14371,8 @@ interface PollImageGenerationResultResponseResponseOneOf {
|
|
|
14266
14371
|
openAiGetVideoResultResponse?: GetVideoResultResponse;
|
|
14267
14372
|
/** Bytedance getContentTask response */
|
|
14268
14373
|
bytedanceGetContentTaskResponse?: GetContentTaskResponse;
|
|
14374
|
+
/** Fal schemaless proxy GetQueueResult response */
|
|
14375
|
+
falGetQueueResultResponse?: FalGetQueueResultResponse;
|
|
14269
14376
|
}
|
|
14270
14377
|
interface V1GetResultResponse {
|
|
14271
14378
|
/**
|
|
@@ -14336,6 +14443,10 @@ interface GetContentTaskResponse {
|
|
|
14336
14443
|
/** The queried video generation task, including its status and result. */
|
|
14337
14444
|
task?: CommonContentTaskResponse;
|
|
14338
14445
|
}
|
|
14446
|
+
interface FalGetQueueResultResponse {
|
|
14447
|
+
/** Raw FAL queue result JSON body. */
|
|
14448
|
+
body?: Record<string, any> | null;
|
|
14449
|
+
}
|
|
14339
14450
|
interface DomainEvent extends DomainEventBodyOneOf {
|
|
14340
14451
|
createdEvent?: EntityCreatedEvent;
|
|
14341
14452
|
updatedEvent?: EntityUpdatedEvent;
|
|
@@ -14621,7 +14732,7 @@ interface GenerateTextByPromptObjectStreamedOptions {
|
|
|
14621
14732
|
* @permissionId DATA_SCIENCE.WIX_AI_GATEWAY.GENERATE_EMBEDDING
|
|
14622
14733
|
* @fqn wix.ds.wix_ai_gateway.v1.WixAiGateway.GenerateEmbedding
|
|
14623
14734
|
*/
|
|
14624
|
-
declare function generateEmbedding(options?: GenerateEmbeddingOptions): Promise<NonNullablePaths<GenerateEmbeddingsResponse, `openAiEmbeddingsResponse.data` | `openAiEmbeddingsResponse.model` | `azureEmbeddingsResponse.data` | `azureEmbeddingsResponse.model` | `googleEmbeddingsResponse.predictions`,
|
|
14735
|
+
declare function generateEmbedding(options?: GenerateEmbeddingOptions): Promise<NonNullablePaths<GenerateEmbeddingsResponse, `openAiEmbeddingsResponse.data` | `openAiEmbeddingsResponse.model` | `azureEmbeddingsResponse.data` | `azureEmbeddingsResponse.model` | `googleEmbeddingsResponse.predictions` | `googleEmbedContentResponse.embedding.values`, 4>>;
|
|
14625
14736
|
interface GenerateEmbeddingOptions extends GenerateEmbeddingOptionsEmbeddingRequestOneOf {
|
|
14626
14737
|
/** OpenAi Embeddings Request */
|
|
14627
14738
|
openAiEmbeddingsRequest?: V1CreateEmbeddingsRequest;
|
|
@@ -14629,6 +14740,8 @@ interface GenerateEmbeddingOptions extends GenerateEmbeddingOptionsEmbeddingRequ
|
|
|
14629
14740
|
azureEmbeddingsRequest?: CreateEmbeddingsRequest;
|
|
14630
14741
|
/** Google Vertex Embeddings Request */
|
|
14631
14742
|
googleEmbeddingsRequest?: GetEmbeddingRequest;
|
|
14743
|
+
/** Google multimodal embedContent Request (gemini-embedding-2) */
|
|
14744
|
+
googleEmbedContentRequest?: EmbedContentRequest;
|
|
14632
14745
|
/** Contains additional information for the request, such as interaction ID and additional tags (comma-separated string). */
|
|
14633
14746
|
userRequestInfo?: UserRequestInfo;
|
|
14634
14747
|
}
|
|
@@ -14640,6 +14753,8 @@ interface GenerateEmbeddingOptionsEmbeddingRequestOneOf {
|
|
|
14640
14753
|
azureEmbeddingsRequest?: CreateEmbeddingsRequest;
|
|
14641
14754
|
/** Google Vertex Embeddings Request */
|
|
14642
14755
|
googleEmbeddingsRequest?: GetEmbeddingRequest;
|
|
14756
|
+
/** Google multimodal embedContent Request (gemini-embedding-2) */
|
|
14757
|
+
googleEmbedContentRequest?: EmbedContentRequest;
|
|
14643
14758
|
}
|
|
14644
14759
|
/**
|
|
14645
14760
|
* Generate text according to Project id, that was previously published in the service. Project's default prompt will be used to perform the request.
|
|
@@ -15242,6 +15357,8 @@ interface PollImageGenerationResultOptions extends PollImageGenerationResultOpti
|
|
|
15242
15357
|
openAiGetVideoResultRequest?: GetVideoResultRequest;
|
|
15243
15358
|
/** Bytedance getContentTask request */
|
|
15244
15359
|
bytedanceGetContentTaskRequest?: GetContentTaskRequest;
|
|
15360
|
+
/** Fal schemaless proxy GetQueueResult request */
|
|
15361
|
+
falGetQueueResultRequest?: FalGetQueueResultRequest;
|
|
15245
15362
|
}
|
|
15246
15363
|
/** @oneof */
|
|
15247
15364
|
interface PollImageGenerationResultOptionsRequestOneOf {
|
|
@@ -15255,6 +15372,8 @@ interface PollImageGenerationResultOptionsRequestOneOf {
|
|
|
15255
15372
|
openAiGetVideoResultRequest?: GetVideoResultRequest;
|
|
15256
15373
|
/** Bytedance getContentTask request */
|
|
15257
15374
|
bytedanceGetContentTaskRequest?: GetContentTaskRequest;
|
|
15375
|
+
/** Fal schemaless proxy GetQueueResult request */
|
|
15376
|
+
falGetQueueResultRequest?: FalGetQueueResultRequest;
|
|
15258
15377
|
}
|
|
15259
15378
|
|
|
15260
|
-
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 AudioUrl, 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 EditVideoOptions, type EditVideoOptionsRequestOneOf, type EditVideoRequest, EditVideoRequestModel, type EditVideoRequestModelWithLiterals, type EditVideoResponse, type EditVideoTaskResult, 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 FalGatewayPayload, type FalGatewayResponse, 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 GoogleproxyV1JsonOutputFormat, 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 JsonOutputFormat, type JsonSchema, Language, type LanguageWithLiterals, type LayerInfo, 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 ProxyTraceRequest, type ProxyTraceResponse, 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, type TraceMeta, TraceMode, type TraceModeWithLiterals, type TraceParams, type TraceRequest, 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, type V1EditVideoRequest, type V1EditVideoRequestRequestOneOf, type V1EditVideoResponse, type V1EditVideoResponseResponseOneOf, 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 V1JsonOutputFormat, 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 VideoUrl, 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, editImage, editVideo, generateAudio, generateAudioStreamed, generateContentByProject, generateContentByPrompt, generateContentByPromptObject, generateEmbedding, generateImageByProject, generateImageByPrompt, generateImageByPromptObject, generateModeration, generateTextByProject, generateTextByProjectStreamed, generateTextByPrompt, generateTextByPromptObject, generateTextByPromptObjectStreamed, generateTextByPromptStreamed, generateTranscription, getApplicationUsage, getProject, getPrompt, getStatus, pollImageGenerationResult, publishProject, publishPrompt };
|
|
15379
|
+
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 AudioUrl, 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 ContentEmbedding, 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 EditVideoOptions, type EditVideoOptionsRequestOneOf, type EditVideoRequest, EditVideoRequestModel, type EditVideoRequestModelWithLiterals, type EditVideoResponse, type EditVideoTaskResult, type Element, ElevenLabsTextToSpeechModel, type ElevenLabsTextToSpeechModelWithLiterals, type EmbedContentInput, EmbedContentModel, type EmbedContentModelWithLiterals, type EmbedContentPart, type EmbedContentRequest, type EmbedContentResponse, type EmbedContentStatistics, 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 FalGatewayPayload, type FalGatewayResponse, type FalGetQueueResultRequest, type FalGetQueueResultResponse, 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 GoogleproxyV1JsonOutputFormat, 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 JsonOutputFormat, type JsonSchema, Language, type LanguageWithLiterals, type LayerInfo, 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 ProxyTraceRequest, type ProxyTraceResponse, 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, type TraceMeta, TraceMode, type TraceModeWithLiterals, type TraceParams, type TraceRequest, 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, type V1EditVideoRequest, type V1EditVideoRequestRequestOneOf, type V1EditVideoResponse, type V1EditVideoResponseResponseOneOf, 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 V1JsonOutputFormat, 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 VideoUrl, 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, editImage, editVideo, generateAudio, generateAudioStreamed, generateContentByProject, generateContentByPrompt, generateContentByPromptObject, generateEmbedding, generateImageByProject, generateImageByPrompt, generateImageByPromptObject, generateModeration, generateTextByProject, generateTextByProjectStreamed, generateTextByPrompt, generateTextByPromptObject, generateTextByPromptObjectStreamed, generateTextByPromptStreamed, generateTranscription, getApplicationUsage, getProject, getPrompt, getStatus, pollImageGenerationResult, publishProject, publishPrompt };
|
|
@@ -863,6 +863,10 @@ function generateEmbedding(payload) {
|
|
|
863
863
|
{
|
|
864
864
|
path: "googleEmbeddingsResponse.predictions.embeddings.embedding",
|
|
865
865
|
isRepeated: true
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
path: "googleEmbedContentResponse.embedding.values",
|
|
869
|
+
isRepeated: true
|
|
866
870
|
}
|
|
867
871
|
]
|
|
868
872
|
}
|
|
@@ -4079,6 +4083,11 @@ var TaskType = /* @__PURE__ */ ((TaskType2) => {
|
|
|
4079
4083
|
TaskType2["CODE_RETRIEVAL_QUERY"] = "CODE_RETRIEVAL_QUERY";
|
|
4080
4084
|
return TaskType2;
|
|
4081
4085
|
})(TaskType || {});
|
|
4086
|
+
var EmbedContentModel = /* @__PURE__ */ ((EmbedContentModel2) => {
|
|
4087
|
+
EmbedContentModel2["UNKNOWN_EMBED_CONTENT_MODEL"] = "UNKNOWN_EMBED_CONTENT_MODEL";
|
|
4088
|
+
EmbedContentModel2["GEMINI_EMBEDDING_2"] = "GEMINI_EMBEDDING_2";
|
|
4089
|
+
return EmbedContentModel2;
|
|
4090
|
+
})(EmbedContentModel || {});
|
|
4082
4091
|
var TranscriptionModel = /* @__PURE__ */ ((TranscriptionModel2) => {
|
|
4083
4092
|
TranscriptionModel2["UNKNOWN_TRANSCRIPTION_MODEL"] = "UNKNOWN_TRANSCRIPTION_MODEL";
|
|
4084
4093
|
TranscriptionModel2["WHISPER_1"] = "WHISPER_1";
|
|
@@ -4344,6 +4353,7 @@ async function generateEmbedding2(options) {
|
|
|
4344
4353
|
openAiEmbeddingsRequest: options?.openAiEmbeddingsRequest,
|
|
4345
4354
|
azureEmbeddingsRequest: options?.azureEmbeddingsRequest,
|
|
4346
4355
|
googleEmbeddingsRequest: options?.googleEmbeddingsRequest,
|
|
4356
|
+
googleEmbedContentRequest: options?.googleEmbedContentRequest,
|
|
4347
4357
|
userRequestInfo: options?.userRequestInfo
|
|
4348
4358
|
});
|
|
4349
4359
|
const reqOpts = generateEmbedding(payload);
|
|
@@ -4361,6 +4371,7 @@ async function generateEmbedding2(options) {
|
|
|
4361
4371
|
openAiEmbeddingsRequest: "$[0].openAiEmbeddingsRequest",
|
|
4362
4372
|
azureEmbeddingsRequest: "$[0].azureEmbeddingsRequest",
|
|
4363
4373
|
googleEmbeddingsRequest: "$[0].googleEmbeddingsRequest",
|
|
4374
|
+
googleEmbedContentRequest: "$[0].googleEmbedContentRequest",
|
|
4364
4375
|
userRequestInfo: "$[0].userRequestInfo"
|
|
4365
4376
|
},
|
|
4366
4377
|
singleArgumentUnchanged: false
|
|
@@ -5044,7 +5055,8 @@ async function pollImageGenerationResult2(options) {
|
|
|
5044
5055
|
bflGetResultRequest: options?.bflGetResultRequest,
|
|
5045
5056
|
runwareGetTaskResultRequest: options?.runwareGetTaskResultRequest,
|
|
5046
5057
|
openAiGetVideoResultRequest: options?.openAiGetVideoResultRequest,
|
|
5047
|
-
bytedanceGetContentTaskRequest: options?.bytedanceGetContentTaskRequest
|
|
5058
|
+
bytedanceGetContentTaskRequest: options?.bytedanceGetContentTaskRequest,
|
|
5059
|
+
falGetQueueResultRequest: options?.falGetQueueResultRequest
|
|
5048
5060
|
});
|
|
5049
5061
|
const reqOpts = pollImageGenerationResult(payload);
|
|
5050
5062
|
sideEffects?.onSiteCall?.();
|
|
@@ -5063,7 +5075,8 @@ async function pollImageGenerationResult2(options) {
|
|
|
5063
5075
|
bflGetResultRequest: "$[0].bflGetResultRequest",
|
|
5064
5076
|
runwareGetTaskResultRequest: "$[0].runwareGetTaskResultRequest",
|
|
5065
5077
|
openAiGetVideoResultRequest: "$[0].openAiGetVideoResultRequest",
|
|
5066
|
-
bytedanceGetContentTaskRequest: "$[0].bytedanceGetContentTaskRequest"
|
|
5078
|
+
bytedanceGetContentTaskRequest: "$[0].bytedanceGetContentTaskRequest",
|
|
5079
|
+
falGetQueueResultRequest: "$[0].falGetQueueResultRequest"
|
|
5067
5080
|
},
|
|
5068
5081
|
singleArgumentUnchanged: false
|
|
5069
5082
|
},
|
|
@@ -5091,6 +5104,7 @@ export {
|
|
|
5091
5104
|
EditImageWithPromptRequestModel,
|
|
5092
5105
|
EditVideoRequestModel,
|
|
5093
5106
|
ElevenLabsTextToSpeechModel,
|
|
5107
|
+
EmbedContentModel,
|
|
5094
5108
|
EmbeddingEncodingFormat,
|
|
5095
5109
|
EmbeddingModel,
|
|
5096
5110
|
EntityType,
|