@wix/auto_sdk_ai-gateway_generators 1.0.72 → 1.0.74
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 +912 -458
- package/build/cjs/index.js +25 -112
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -1
- package/build/cjs/index.typings.js +25 -112
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +903 -455
- package/build/cjs/meta.js +21 -110
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +912 -458
- package/build/es/index.mjs +25 -111
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs +25 -111
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +903 -455
- package/build/es/meta.mjs +21 -109
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +14 -14
- package/build/internal/cjs/index.js +25 -112
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +925 -471
- package/build/internal/cjs/index.typings.js +25 -112
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +903 -455
- package/build/internal/cjs/meta.js +21 -110
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +14 -14
- package/build/internal/es/index.mjs +25 -111
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +925 -471
- package/build/internal/es/index.typings.mjs +25 -111
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +903 -455
- package/build/internal/es/meta.mjs +21 -109
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -5,8 +5,6 @@ interface Prompt extends PromptModelRequestOneOf {
|
|
|
5
5
|
openAiChatCompletionRequest?: OpenaiproxyV1CreateChatCompletionRequest;
|
|
6
6
|
/** Google bison text completion request. */
|
|
7
7
|
googleTextBisonRequest?: TextBisonPredictRequest;
|
|
8
|
-
/** Google bison chat completion request. */
|
|
9
|
-
googleChatBisonRequest?: ChatBisonPredictRequest;
|
|
10
8
|
/** Azure OpenAI chat completion request. */
|
|
11
9
|
azureChatCompletionRequest?: CreateChatCompletionRequest;
|
|
12
10
|
/** Google Gemini generate content request. */
|
|
@@ -42,7 +40,7 @@ interface Prompt extends PromptModelRequestOneOf {
|
|
|
42
40
|
/** Perplexity chat completion request */
|
|
43
41
|
perplexityChatCompletionRequest?: InvokeChatCompletionRequest;
|
|
44
42
|
/** Google AI - generate image request */
|
|
45
|
-
googleGenerateImageRequest?:
|
|
43
|
+
googleGenerateImageRequest?: V1GenerateImageRequest;
|
|
46
44
|
/** ML platform - generate image request */
|
|
47
45
|
mlPlatformGenerateImageRequest?: GenerateImageMlPlatformRequest;
|
|
48
46
|
/** OpenAI image creation response. */
|
|
@@ -65,6 +63,10 @@ interface Prompt extends PromptModelRequestOneOf {
|
|
|
65
63
|
openAiCreateVideoRequest?: CreateVideoRequest;
|
|
66
64
|
/** Fireworks - OpenAI payload */
|
|
67
65
|
fireworksInvokeCustomOpenAiRequest?: InvokeCustomOpenAiModelRequest;
|
|
66
|
+
/** Bytedance - Create content task request (video generation) */
|
|
67
|
+
bytedanceCreateContentTaskRequest?: CreateContentTaskRequest;
|
|
68
|
+
/** Bytedance - Generate image request (Seedream models) */
|
|
69
|
+
bytedanceGenerateImageRequest?: GenerateImageRequest;
|
|
68
70
|
/**
|
|
69
71
|
* Prompt id.
|
|
70
72
|
* @format GUID
|
|
@@ -91,8 +93,6 @@ interface PromptModelRequestOneOf {
|
|
|
91
93
|
openAiChatCompletionRequest?: OpenaiproxyV1CreateChatCompletionRequest;
|
|
92
94
|
/** Google bison text completion request. */
|
|
93
95
|
googleTextBisonRequest?: TextBisonPredictRequest;
|
|
94
|
-
/** Google bison chat completion request. */
|
|
95
|
-
googleChatBisonRequest?: ChatBisonPredictRequest;
|
|
96
96
|
/** Azure OpenAI chat completion request. */
|
|
97
97
|
azureChatCompletionRequest?: CreateChatCompletionRequest;
|
|
98
98
|
/** Google Gemini generate content request. */
|
|
@@ -128,7 +128,7 @@ interface PromptModelRequestOneOf {
|
|
|
128
128
|
/** Perplexity chat completion request */
|
|
129
129
|
perplexityChatCompletionRequest?: InvokeChatCompletionRequest;
|
|
130
130
|
/** Google AI - generate image request */
|
|
131
|
-
googleGenerateImageRequest?:
|
|
131
|
+
googleGenerateImageRequest?: V1GenerateImageRequest;
|
|
132
132
|
/** ML platform - generate image request */
|
|
133
133
|
mlPlatformGenerateImageRequest?: GenerateImageMlPlatformRequest;
|
|
134
134
|
/** OpenAI image creation response. */
|
|
@@ -151,6 +151,10 @@ interface PromptModelRequestOneOf {
|
|
|
151
151
|
openAiCreateVideoRequest?: CreateVideoRequest;
|
|
152
152
|
/** Fireworks - OpenAI payload */
|
|
153
153
|
fireworksInvokeCustomOpenAiRequest?: InvokeCustomOpenAiModelRequest;
|
|
154
|
+
/** Bytedance - Create content task request (video generation) */
|
|
155
|
+
bytedanceCreateContentTaskRequest?: CreateContentTaskRequest;
|
|
156
|
+
/** Bytedance - Generate image request (Seedream models) */
|
|
157
|
+
bytedanceGenerateImageRequest?: GenerateImageRequest;
|
|
154
158
|
}
|
|
155
159
|
interface FallbackPromptConfig {
|
|
156
160
|
/**
|
|
@@ -364,10 +368,11 @@ declare enum OpenaiproxyV1Model {
|
|
|
364
368
|
GPT_5_MINI_2025_08_07 = "GPT_5_MINI_2025_08_07",
|
|
365
369
|
GPT_5_NANO_2025_08_07 = "GPT_5_NANO_2025_08_07",
|
|
366
370
|
GPT_5_2_2025_12_11_COMPLETION = "GPT_5_2_2025_12_11_COMPLETION",
|
|
367
|
-
GPT_5_1_2025_11_13_COMPLETION = "GPT_5_1_2025_11_13_COMPLETION"
|
|
371
|
+
GPT_5_1_2025_11_13_COMPLETION = "GPT_5_1_2025_11_13_COMPLETION",
|
|
372
|
+
GPT_5_4_2026_03_05_COMPLETION = "GPT_5_4_2026_03_05_COMPLETION"
|
|
368
373
|
}
|
|
369
374
|
/** @enumType */
|
|
370
|
-
type OpenaiproxyV1ModelWithLiterals = OpenaiproxyV1Model | 'UNKNOWN' | 'GPT_3_5_TURBO' | 'GPT_3_5_TURBO_0301' | 'GPT_4' | 'GPT_4_0314' | 'GPT_4_32K' | 'GPT_4_32K_0314' | 'GPT_3_5_TURBO_0613' | 'GPT_3_5_TURBO_16K' | 'GPT_3_5_TURBO_16K_0613' | 'GPT_4_0613' | 'GPT_4_32K_0613' | 'GPT_3_5_TURBO_1106' | 'GPT_4_1106_PREVIEW' | 'GPT_4_VISION_PREVIEW' | 'GPT_4_TURBO_PREVIEW' | 'GPT_4_0125_PREVIEW' | 'GPT_3_5_TURBO_0125' | 'GPT_4_TURBO_2024_04_09' | 'GPT_4O_2024_05_13' | 'GPT_4O_MINI_2024_07_18' | 'GPT_4O_2024_08_06' | 'O1_PREVIEW' | 'O1_PREVIEW_2024_09_12' | 'O1_MINI' | 'O1_MINI_2024_09_12' | 'GPT_4O_2024_11_20' | 'O1_2024_12_17' | 'O3_MINI_2025_01_31' | 'GPT_4_OLD' | 'GPT_4_1_2025_04_14' | 'GPT_4_1_MINI_2025_04_14' | 'GPT_4_1_NANO_2025_04_14' | 'O3_2025_04_16' | 'O4_MINI_2025_04_16' | 'GPT_EXP' | 'GPT_EXP_2' | 'GPT_5_2025_08_07' | 'GPT_5_MINI_2025_08_07' | 'GPT_5_NANO_2025_08_07' | 'GPT_5_2_2025_12_11_COMPLETION' | 'GPT_5_1_2025_11_13_COMPLETION';
|
|
375
|
+
type OpenaiproxyV1ModelWithLiterals = OpenaiproxyV1Model | 'UNKNOWN' | 'GPT_3_5_TURBO' | 'GPT_3_5_TURBO_0301' | 'GPT_4' | 'GPT_4_0314' | 'GPT_4_32K' | 'GPT_4_32K_0314' | 'GPT_3_5_TURBO_0613' | 'GPT_3_5_TURBO_16K' | 'GPT_3_5_TURBO_16K_0613' | 'GPT_4_0613' | 'GPT_4_32K_0613' | 'GPT_3_5_TURBO_1106' | 'GPT_4_1106_PREVIEW' | 'GPT_4_VISION_PREVIEW' | 'GPT_4_TURBO_PREVIEW' | 'GPT_4_0125_PREVIEW' | 'GPT_3_5_TURBO_0125' | 'GPT_4_TURBO_2024_04_09' | 'GPT_4O_2024_05_13' | 'GPT_4O_MINI_2024_07_18' | 'GPT_4O_2024_08_06' | 'O1_PREVIEW' | 'O1_PREVIEW_2024_09_12' | 'O1_MINI' | 'O1_MINI_2024_09_12' | 'GPT_4O_2024_11_20' | 'O1_2024_12_17' | 'O3_MINI_2025_01_31' | 'GPT_4_OLD' | 'GPT_4_1_2025_04_14' | 'GPT_4_1_MINI_2025_04_14' | 'GPT_4_1_NANO_2025_04_14' | 'O3_2025_04_16' | 'O4_MINI_2025_04_16' | 'GPT_EXP' | 'GPT_EXP_2' | 'GPT_5_2025_08_07' | 'GPT_5_MINI_2025_08_07' | 'GPT_5_NANO_2025_08_07' | 'GPT_5_2_2025_12_11_COMPLETION' | 'GPT_5_1_2025_11_13_COMPLETION' | 'GPT_5_4_2026_03_05_COMPLETION';
|
|
371
376
|
interface OpenaiproxyV1ChatCompletionMessage {
|
|
372
377
|
/** The role of the message author. */
|
|
373
378
|
role?: OpenaiproxyV1ChatCompletionMessageMessageRoleWithLiterals;
|
|
@@ -609,65 +614,6 @@ declare enum TextBisonModel {
|
|
|
609
614
|
}
|
|
610
615
|
/** @enumType */
|
|
611
616
|
type TextBisonModelWithLiterals = TextBisonModel | 'UNKNOWN_TEXT_BISON_MODEL' | 'TEXT_BISON' | 'TEXT_BISON_001' | 'TEXT_BISON_32K' | 'TEXT_BISON_002' | 'TEXT_BISON_32K_002';
|
|
612
|
-
interface ChatBisonPredictRequest {
|
|
613
|
-
/**
|
|
614
|
-
* ChatInstance objects containing inputs.
|
|
615
|
-
* @maxSize 100
|
|
616
|
-
*/
|
|
617
|
-
instances?: ChatInstance[];
|
|
618
|
-
/** Model parameters. */
|
|
619
|
-
parameters?: PredictParameters;
|
|
620
|
-
/** Model to be invoked. */
|
|
621
|
-
model?: ChatBisonModelWithLiterals;
|
|
622
|
-
}
|
|
623
|
-
interface ChatInstance {
|
|
624
|
-
/**
|
|
625
|
-
* Optional. Context shapes how the model responds throughout the conversation. For example, you can use context
|
|
626
|
-
* to specify words the model can or cannot use, topics to focus on or avoid, or the response format or style.
|
|
627
|
-
* @maxLength 100000
|
|
628
|
-
*/
|
|
629
|
-
context?: string | null;
|
|
630
|
-
/**
|
|
631
|
-
* Optional. Examples for the model to learn how to respond to the conversation.
|
|
632
|
-
* @maxSize 1000
|
|
633
|
-
*/
|
|
634
|
-
examples?: Example[];
|
|
635
|
-
/**
|
|
636
|
-
* Required. Conversation history provided to the model in a structured alternate-author form. Messages appear in
|
|
637
|
-
* chronological order: oldest first, newest last. When the history of messages causes the input to exceed the
|
|
638
|
-
* maximum length, the oldest messages are removed until the entire prompt is within the allowed limit.
|
|
639
|
-
* @maxSize 1000
|
|
640
|
-
*/
|
|
641
|
-
messages?: ChatMessage[];
|
|
642
|
-
}
|
|
643
|
-
interface Example {
|
|
644
|
-
/** An example of an input Message from the user. */
|
|
645
|
-
input?: ChatMessage;
|
|
646
|
-
/** An example of what the model should output given the input. */
|
|
647
|
-
output?: ChatMessage;
|
|
648
|
-
}
|
|
649
|
-
interface ChatMessage {
|
|
650
|
-
/**
|
|
651
|
-
* Author tag for the turn.
|
|
652
|
-
* @maxLength 100000
|
|
653
|
-
*/
|
|
654
|
-
author?: string | null;
|
|
655
|
-
/**
|
|
656
|
-
* Text content of the chat message.
|
|
657
|
-
* @maxLength 100000
|
|
658
|
-
*/
|
|
659
|
-
content?: string;
|
|
660
|
-
}
|
|
661
|
-
declare enum ChatBisonModel {
|
|
662
|
-
UNKNOWN_CHAT_BISON_MODEL = "UNKNOWN_CHAT_BISON_MODEL",
|
|
663
|
-
CHAT_BISON = "CHAT_BISON",
|
|
664
|
-
CHAT_BISON_001 = "CHAT_BISON_001",
|
|
665
|
-
CHAT_BISON_32K = "CHAT_BISON_32K",
|
|
666
|
-
CHAT_BISON_002 = "CHAT_BISON_002",
|
|
667
|
-
CHAT_BISON_32K_002 = "CHAT_BISON_32K_002"
|
|
668
|
-
}
|
|
669
|
-
/** @enumType */
|
|
670
|
-
type ChatBisonModelWithLiterals = ChatBisonModel | 'UNKNOWN_CHAT_BISON_MODEL' | 'CHAT_BISON' | 'CHAT_BISON_001' | 'CHAT_BISON_32K' | 'CHAT_BISON_002' | 'CHAT_BISON_32K_002';
|
|
671
617
|
interface CreateChatCompletionRequest extends CreateChatCompletionRequestFunctionCallOneOf {
|
|
672
618
|
/** Specifying a particular function via {"name":\ "my_function"} forces the model to call that function. */
|
|
673
619
|
forceCallFunctionCallConfig?: Record<string, any> | null;
|
|
@@ -1014,10 +960,11 @@ declare enum GoogleproxyV1Model {
|
|
|
1014
960
|
GEMINI_2_5_COMPUTER_USE = "GEMINI_2_5_COMPUTER_USE",
|
|
1015
961
|
GEMINI_3_0_PRO = "GEMINI_3_0_PRO",
|
|
1016
962
|
GEMINI_3_0_PRO_IMAGE = "GEMINI_3_0_PRO_IMAGE",
|
|
1017
|
-
GEMINI_3_0_FLASH = "GEMINI_3_0_FLASH"
|
|
963
|
+
GEMINI_3_0_FLASH = "GEMINI_3_0_FLASH",
|
|
964
|
+
GEMINI_3_1_PRO = "GEMINI_3_1_PRO"
|
|
1018
965
|
}
|
|
1019
966
|
/** @enumType */
|
|
1020
|
-
type GoogleproxyV1ModelWithLiterals = GoogleproxyV1Model | 'UNKNOWN_MODEL' | 'GEMINI_1_0_PRO' | 'GEMINI_1_0_PRO_VISION' | 'GEMINI_1_5_PRO' | 'GEMINI_1_5_FLASH' | 'GEMINI_2_0_FLASH' | 'GEMINI_2_0_FLASH_LITE' | 'GEMINI_2_5_PRO' | 'GEMINI_2_5_FLASH' | 'GEMINI_2_5_FLASH_LITE' | 'GEMINI_2_5_FLASH_IMAGE' | 'GEMINI_2_5_COMPUTER_USE' | 'GEMINI_3_0_PRO' | 'GEMINI_3_0_PRO_IMAGE' | 'GEMINI_3_0_FLASH';
|
|
967
|
+
type GoogleproxyV1ModelWithLiterals = GoogleproxyV1Model | 'UNKNOWN_MODEL' | 'GEMINI_1_0_PRO' | 'GEMINI_1_0_PRO_VISION' | 'GEMINI_1_5_PRO' | 'GEMINI_1_5_FLASH' | 'GEMINI_2_0_FLASH' | 'GEMINI_2_0_FLASH_LITE' | 'GEMINI_2_5_PRO' | 'GEMINI_2_5_FLASH' | 'GEMINI_2_5_FLASH_LITE' | 'GEMINI_2_5_FLASH_IMAGE' | 'GEMINI_2_5_COMPUTER_USE' | 'GEMINI_3_0_PRO' | 'GEMINI_3_0_PRO_IMAGE' | 'GEMINI_3_0_FLASH' | 'GEMINI_3_1_PRO';
|
|
1021
968
|
interface Content {
|
|
1022
969
|
/**
|
|
1023
970
|
* The role in a conversation associated with the content.
|
|
@@ -1665,10 +1612,12 @@ declare enum Model {
|
|
|
1665
1612
|
CLAUDE_4_5_SONNET_1_0 = "CLAUDE_4_5_SONNET_1_0",
|
|
1666
1613
|
/** us.anthropic.claude-haiku-4-5-20251001-v1:0 */
|
|
1667
1614
|
CLAUDE_4_5_HAIKU_1_0 = "CLAUDE_4_5_HAIKU_1_0",
|
|
1668
|
-
CLAUDE_4_5_OPUS_1_0 = "CLAUDE_4_5_OPUS_1_0"
|
|
1615
|
+
CLAUDE_4_5_OPUS_1_0 = "CLAUDE_4_5_OPUS_1_0",
|
|
1616
|
+
CLAUDE_4_6_OPUS_1_0 = "CLAUDE_4_6_OPUS_1_0",
|
|
1617
|
+
CLAUDE_4_6_SONNET_1_0 = "CLAUDE_4_6_SONNET_1_0"
|
|
1669
1618
|
}
|
|
1670
1619
|
/** @enumType */
|
|
1671
|
-
type ModelWithLiterals = Model | 'UNKNOWN' | 'CLAUDE_3_SONNET_1_0' | 'CLAUDE_3_HAIKU_1_0' | 'CLAUDE_3_5_SONNET_1_0' | 'CLAUDE_3_5_SONNET_2_0' | 'CLAUDE_3_5_HAIKU_1_0' | 'CLAUDE_3_7_SONNET_1_0' | 'CLAUDE_4_SONNET_1_0' | 'CLAUDE_4_OPUS_1_0' | 'CLAUDE_4_5_SONNET_1_0' | 'CLAUDE_4_5_HAIKU_1_0' | 'CLAUDE_4_5_OPUS_1_0';
|
|
1620
|
+
type ModelWithLiterals = Model | 'UNKNOWN' | 'CLAUDE_3_SONNET_1_0' | 'CLAUDE_3_HAIKU_1_0' | 'CLAUDE_3_5_SONNET_1_0' | 'CLAUDE_3_5_SONNET_2_0' | 'CLAUDE_3_5_HAIKU_1_0' | 'CLAUDE_3_7_SONNET_1_0' | 'CLAUDE_4_SONNET_1_0' | 'CLAUDE_4_OPUS_1_0' | 'CLAUDE_4_5_SONNET_1_0' | 'CLAUDE_4_5_HAIKU_1_0' | 'CLAUDE_4_5_OPUS_1_0' | 'CLAUDE_4_6_OPUS_1_0' | 'CLAUDE_4_6_SONNET_1_0';
|
|
1672
1621
|
interface AnthropicClaudeMessage {
|
|
1673
1622
|
/** The role of the message author. */
|
|
1674
1623
|
role?: RoleWithLiterals;
|
|
@@ -1696,7 +1645,7 @@ interface ContentBlock extends ContentBlockTypeOneOf {
|
|
|
1696
1645
|
/** Text content. */
|
|
1697
1646
|
textContent?: Text;
|
|
1698
1647
|
/** Image image = 2; // Image content. */
|
|
1699
|
-
imageUrl?:
|
|
1648
|
+
imageUrl?: V1ImageUrl;
|
|
1700
1649
|
/** Tool use content, describes which tool should be used and with which parameters. */
|
|
1701
1650
|
toolUse?: ToolUse;
|
|
1702
1651
|
/** Tool result content, describes the result of tool invocation. */
|
|
@@ -1721,7 +1670,7 @@ interface ContentBlockTypeOneOf {
|
|
|
1721
1670
|
/** Text content. */
|
|
1722
1671
|
textContent?: Text;
|
|
1723
1672
|
/** Image image = 2; // Image content. */
|
|
1724
|
-
imageUrl?:
|
|
1673
|
+
imageUrl?: V1ImageUrl;
|
|
1725
1674
|
/** Tool use content, describes which tool should be used and with which parameters. */
|
|
1726
1675
|
toolUse?: ToolUse;
|
|
1727
1676
|
/** Tool result content, describes the result of tool invocation. */
|
|
@@ -1743,7 +1692,7 @@ interface Text {
|
|
|
1743
1692
|
/** Enables prompt caching: https://docs.anthropic.com/en/docs/build-with-claude/prompt-caching. */
|
|
1744
1693
|
cacheControl?: CacheControl;
|
|
1745
1694
|
}
|
|
1746
|
-
interface
|
|
1695
|
+
interface V1ImageUrl {
|
|
1747
1696
|
/**
|
|
1748
1697
|
* The URL must be a valid wix mp or wix static URL.
|
|
1749
1698
|
* @maxLength 100000
|
|
@@ -1810,7 +1759,7 @@ interface SimpleContentBlock extends SimpleContentBlockTypeOneOf {
|
|
|
1810
1759
|
/** Text content. */
|
|
1811
1760
|
textContent?: Text;
|
|
1812
1761
|
/** Image content, represented as URL. Will be downloaded and passed on as base64. */
|
|
1813
|
-
imageUrl?:
|
|
1762
|
+
imageUrl?: V1ImageUrl;
|
|
1814
1763
|
}
|
|
1815
1764
|
/** @oneof */
|
|
1816
1765
|
interface SimpleContentBlockTypeOneOf {
|
|
@@ -1824,7 +1773,7 @@ interface SimpleContentBlockTypeOneOf {
|
|
|
1824
1773
|
/** Text content. */
|
|
1825
1774
|
textContent?: Text;
|
|
1826
1775
|
/** Image content, represented as URL. Will be downloaded and passed on as base64. */
|
|
1827
|
-
imageUrl?:
|
|
1776
|
+
imageUrl?: V1ImageUrl;
|
|
1828
1777
|
}
|
|
1829
1778
|
interface Thinking {
|
|
1830
1779
|
/**
|
|
@@ -2058,10 +2007,12 @@ declare enum ClaudeModel {
|
|
|
2058
2007
|
CLAUDE_4_OPUS_1_0 = "CLAUDE_4_OPUS_1_0",
|
|
2059
2008
|
CLAUDE_4_5_SONNET_1_0 = "CLAUDE_4_5_SONNET_1_0",
|
|
2060
2009
|
CLAUDE_4_5_HAIKU_1_0 = "CLAUDE_4_5_HAIKU_1_0",
|
|
2061
|
-
CLAUDE_4_5_OPUS_1_0 = "CLAUDE_4_5_OPUS_1_0"
|
|
2010
|
+
CLAUDE_4_5_OPUS_1_0 = "CLAUDE_4_5_OPUS_1_0",
|
|
2011
|
+
CLAUDE_4_6_OPUS_1_0 = "CLAUDE_4_6_OPUS_1_0",
|
|
2012
|
+
CLAUDE_4_6_SONNET_1_0 = "CLAUDE_4_6_SONNET_1_0"
|
|
2062
2013
|
}
|
|
2063
2014
|
/** @enumType */
|
|
2064
|
-
type ClaudeModelWithLiterals = ClaudeModel | 'UNKNOWN_CLAUDE_MODEL' | 'CLAUDE_3_SONNET_1_0' | 'CLAUDE_3_HAIKU_1_0' | 'CLAUDE_3_OPUS_1_0' | 'CLAUDE_3_5_SONNET_1_0' | 'CLAUDE_3_5_SONNET_2_0' | 'CLAUDE_3_7_SONNET_1_0' | 'CLAUDE_4_SONNET_1_0' | 'CLAUDE_4_OPUS_1_0' | 'CLAUDE_4_5_SONNET_1_0' | 'CLAUDE_4_5_HAIKU_1_0' | 'CLAUDE_4_5_OPUS_1_0';
|
|
2015
|
+
type ClaudeModelWithLiterals = ClaudeModel | 'UNKNOWN_CLAUDE_MODEL' | 'CLAUDE_3_SONNET_1_0' | 'CLAUDE_3_HAIKU_1_0' | 'CLAUDE_3_OPUS_1_0' | 'CLAUDE_3_5_SONNET_1_0' | 'CLAUDE_3_5_SONNET_2_0' | 'CLAUDE_3_7_SONNET_1_0' | 'CLAUDE_4_SONNET_1_0' | 'CLAUDE_4_OPUS_1_0' | 'CLAUDE_4_5_SONNET_1_0' | 'CLAUDE_4_5_HAIKU_1_0' | 'CLAUDE_4_5_OPUS_1_0' | 'CLAUDE_4_6_OPUS_1_0' | 'CLAUDE_4_6_SONNET_1_0';
|
|
2065
2016
|
interface V1AnthropicClaudeMessage {
|
|
2066
2017
|
/** The role of the message author. */
|
|
2067
2018
|
role?: V1MessageRoleRoleWithLiterals;
|
|
@@ -2430,10 +2381,12 @@ declare enum AnthropicModel {
|
|
|
2430
2381
|
CLAUDE_4_1_OPUS_1_0 = "CLAUDE_4_1_OPUS_1_0",
|
|
2431
2382
|
CLAUDE_4_5_SONNET_1_0 = "CLAUDE_4_5_SONNET_1_0",
|
|
2432
2383
|
CLAUDE_4_5_HAIKU_1_0 = "CLAUDE_4_5_HAIKU_1_0",
|
|
2433
|
-
CLAUDE_4_5_OPUS_1_0 = "CLAUDE_4_5_OPUS_1_0"
|
|
2384
|
+
CLAUDE_4_5_OPUS_1_0 = "CLAUDE_4_5_OPUS_1_0",
|
|
2385
|
+
CLAUDE_4_6_OPUS_1_0 = "CLAUDE_4_6_OPUS_1_0",
|
|
2386
|
+
CLAUDE_4_6_SONNET_1_0 = "CLAUDE_4_6_SONNET_1_0"
|
|
2434
2387
|
}
|
|
2435
2388
|
/** @enumType */
|
|
2436
|
-
type AnthropicModelWithLiterals = AnthropicModel | 'UNKNOWN_ANTHROPIC_MODEL' | 'CLAUDE_3_HAIKU_1_0' | 'CLAUDE_3_5_SONNET_1_0' | 'CLAUDE_3_5_SONNET_2_0' | 'CLAUDE_3_7_SONNET_1_0' | 'CLAUDE_4_SONNET_1_0' | 'CLAUDE_4_OPUS_1_0' | 'CLAUDE_4_1_OPUS_1_0' | 'CLAUDE_4_5_SONNET_1_0' | 'CLAUDE_4_5_HAIKU_1_0' | 'CLAUDE_4_5_OPUS_1_0';
|
|
2389
|
+
type AnthropicModelWithLiterals = AnthropicModel | 'UNKNOWN_ANTHROPIC_MODEL' | 'CLAUDE_3_HAIKU_1_0' | 'CLAUDE_3_5_SONNET_1_0' | 'CLAUDE_3_5_SONNET_2_0' | 'CLAUDE_3_7_SONNET_1_0' | 'CLAUDE_4_SONNET_1_0' | 'CLAUDE_4_OPUS_1_0' | 'CLAUDE_4_1_OPUS_1_0' | 'CLAUDE_4_5_SONNET_1_0' | 'CLAUDE_4_5_HAIKU_1_0' | 'CLAUDE_4_5_OPUS_1_0' | 'CLAUDE_4_6_OPUS_1_0' | 'CLAUDE_4_6_SONNET_1_0';
|
|
2437
2390
|
interface AnthropicMessage {
|
|
2438
2391
|
/** The role of the message author. */
|
|
2439
2392
|
role?: MessageRoleRoleWithLiterals;
|
|
@@ -2455,7 +2408,7 @@ interface V1ContentBlock extends V1ContentBlockTypeOneOf {
|
|
|
2455
2408
|
/** Text content. */
|
|
2456
2409
|
textContent?: V1Text;
|
|
2457
2410
|
/** Image content, represented as URL. Will be downloaded and passed on as base64. */
|
|
2458
|
-
image?:
|
|
2411
|
+
image?: AnthropicV1ImageUrl;
|
|
2459
2412
|
/** Tool use content, describes which tool should be used and with which parameters. */
|
|
2460
2413
|
toolUse?: V1ToolUse;
|
|
2461
2414
|
/** Tool result content, describes the result of tool invocation. */
|
|
@@ -2492,7 +2445,7 @@ interface V1ContentBlockTypeOneOf {
|
|
|
2492
2445
|
/** Text content. */
|
|
2493
2446
|
textContent?: V1Text;
|
|
2494
2447
|
/** Image content, represented as URL. Will be downloaded and passed on as base64. */
|
|
2495
|
-
image?:
|
|
2448
|
+
image?: AnthropicV1ImageUrl;
|
|
2496
2449
|
/** Tool use content, describes which tool should be used and with which parameters. */
|
|
2497
2450
|
toolUse?: V1ToolUse;
|
|
2498
2451
|
/** Tool result content, describes the result of tool invocation. */
|
|
@@ -2706,7 +2659,7 @@ interface SearchResultLocationCitation {
|
|
|
2706
2659
|
*/
|
|
2707
2660
|
citedText?: string | null;
|
|
2708
2661
|
}
|
|
2709
|
-
interface
|
|
2662
|
+
interface AnthropicV1ImageUrl {
|
|
2710
2663
|
/**
|
|
2711
2664
|
* The URL must be a valid wix mp or wix static URL.
|
|
2712
2665
|
* @maxLength 100000
|
|
@@ -2766,7 +2719,7 @@ interface ToolResultContentBlock extends ToolResultContentBlockTypeOneOf {
|
|
|
2766
2719
|
/** Text content. */
|
|
2767
2720
|
text?: V1Text;
|
|
2768
2721
|
/** Image content, represented as URL. Will be downloaded and passed on as base64. */
|
|
2769
|
-
image?:
|
|
2722
|
+
image?: AnthropicV1ImageUrl;
|
|
2770
2723
|
/** Document content block. */
|
|
2771
2724
|
document?: DocumentContent;
|
|
2772
2725
|
/** Search result block with snippets/citations. */
|
|
@@ -2777,7 +2730,7 @@ interface ToolResultContentBlockTypeOneOf {
|
|
|
2777
2730
|
/** Text content. */
|
|
2778
2731
|
text?: V1Text;
|
|
2779
2732
|
/** Image content, represented as URL. Will be downloaded and passed on as base64. */
|
|
2780
|
-
image?:
|
|
2733
|
+
image?: AnthropicV1ImageUrl;
|
|
2781
2734
|
/** Document content block. */
|
|
2782
2735
|
document?: DocumentContent;
|
|
2783
2736
|
/** Search result block with snippets/citations. */
|
|
@@ -3723,7 +3676,7 @@ interface SystemContentBlock {
|
|
|
3723
3676
|
interface CreateImageRequest {
|
|
3724
3677
|
/**
|
|
3725
3678
|
* A text description of the desired image(s). The maximum length is 1000 characters for dall-e-2 and 4000 characters for dall-e-3.
|
|
3726
|
-
* @maxLength
|
|
3679
|
+
* @maxLength 50000
|
|
3727
3680
|
*/
|
|
3728
3681
|
prompt?: string | null;
|
|
3729
3682
|
/** The model to use for image generation. */
|
|
@@ -4991,7 +4944,7 @@ interface InvokeChatCompletionRequestResponseFormatFormatDetailsOneOf {
|
|
|
4991
4944
|
regex?: string;
|
|
4992
4945
|
}
|
|
4993
4946
|
/** mimics https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/imagen-api */
|
|
4994
|
-
interface
|
|
4947
|
+
interface V1GenerateImageRequest {
|
|
4995
4948
|
/** ID of the model to use. */
|
|
4996
4949
|
model?: ImagenModelWithLiterals;
|
|
4997
4950
|
/**
|
|
@@ -5164,8 +5117,9 @@ interface V1FluxPulid {
|
|
|
5164
5117
|
}
|
|
5165
5118
|
interface CreateImageOpenAiRequest {
|
|
5166
5119
|
/**
|
|
5167
|
-
* A text description of the desired image(s). The maximum length is
|
|
5168
|
-
*
|
|
5120
|
+
* A text description of the desired image(s). The maximum length is 32000 characters for the GPT image models,
|
|
5121
|
+
* 1000 characters for dall-e-2 and 4000 characters for dall-e-3.
|
|
5122
|
+
* @maxLength 50000
|
|
5169
5123
|
*/
|
|
5170
5124
|
prompt?: string | null;
|
|
5171
5125
|
/** The model to use for image generation. */
|
|
@@ -5228,8 +5182,9 @@ declare enum OpenAiImageModel {
|
|
|
5228
5182
|
type OpenAiImageModelWithLiterals = OpenAiImageModel | 'UNKNOWN_IMAGE_CREATION_MODEL' | 'GPT_4O_IMAGE' | 'GPT_IMAGE_1' | 'GPT_IMAGE_EXP' | 'GPT_IMAGE_EXP_2' | 'GPT_IMAGE_EXP_3' | 'GPT_IMAGE_1_5';
|
|
5229
5183
|
interface EditImageOpenAiRequest {
|
|
5230
5184
|
/**
|
|
5231
|
-
* A text description of the desired image(s). The maximum length is
|
|
5232
|
-
*
|
|
5185
|
+
* A text description of the desired image(s). The maximum length is 32000 characters for the GPT image models,
|
|
5186
|
+
* 1000 characters for dall-e-2 and 4000 characters for dall-e-3.
|
|
5187
|
+
* @maxLength 50000
|
|
5233
5188
|
*/
|
|
5234
5189
|
prompt?: string | null;
|
|
5235
5190
|
/** The model to use for image generation. */
|
|
@@ -5901,10 +5856,14 @@ declare enum V1ResponsesModel {
|
|
|
5901
5856
|
GPT_EXP_RESPONSES_2 = "GPT_EXP_RESPONSES_2",
|
|
5902
5857
|
GPT_EXP_RESPONSES_3 = "GPT_EXP_RESPONSES_3",
|
|
5903
5858
|
GPT_5_1_CODEX_MAX = "GPT_5_1_CODEX_MAX",
|
|
5904
|
-
GPT_5_2_2025_12_11 = "GPT_5_2_2025_12_11"
|
|
5859
|
+
GPT_5_2_2025_12_11 = "GPT_5_2_2025_12_11",
|
|
5860
|
+
GPT_5_2_CODEX = "GPT_5_2_CODEX",
|
|
5861
|
+
GPT_5_3_CODEX = "GPT_5_3_CODEX",
|
|
5862
|
+
GPT_5_4_2026_03_05 = "GPT_5_4_2026_03_05",
|
|
5863
|
+
GPT_5_4_PRO_2026_03_05 = "GPT_5_4_PRO_2026_03_05"
|
|
5905
5864
|
}
|
|
5906
5865
|
/** @enumType */
|
|
5907
|
-
type V1ResponsesModelWithLiterals = V1ResponsesModel | 'MODEL_UNSPECIFIED' | 'GPT_5_2025_08_07_RESPONSES' | 'GPT_5_MINI_2025_08_07_RESPONSES' | 'GPT_5_NANO_2025_08_07_RESPONSES' | 'O3_PRO_2025_06_10' | 'O3_DEEP_RESEARCH_2025_06_26' | 'GPT_5_CODEX' | 'GPT_5_1_2025_11_13' | 'GPT_5_1_CODEX' | 'GPT_5_1_CODEX_MINI' | 'GPT_EXP_RESPONSES' | 'GPT_EXP_RESPONSES_2' | 'GPT_EXP_RESPONSES_3' | 'GPT_5_1_CODEX_MAX' | 'GPT_5_2_2025_12_11';
|
|
5866
|
+
type V1ResponsesModelWithLiterals = V1ResponsesModel | 'MODEL_UNSPECIFIED' | 'GPT_5_2025_08_07_RESPONSES' | 'GPT_5_MINI_2025_08_07_RESPONSES' | 'GPT_5_NANO_2025_08_07_RESPONSES' | 'O3_PRO_2025_06_10' | 'O3_DEEP_RESEARCH_2025_06_26' | 'GPT_5_CODEX' | 'GPT_5_1_2025_11_13' | 'GPT_5_1_CODEX' | 'GPT_5_1_CODEX_MINI' | 'GPT_EXP_RESPONSES' | 'GPT_EXP_RESPONSES_2' | 'GPT_EXP_RESPONSES_3' | 'GPT_5_1_CODEX_MAX' | 'GPT_5_2_2025_12_11' | 'GPT_5_2_CODEX' | 'GPT_5_3_CODEX' | 'GPT_5_4_2026_03_05' | 'GPT_5_4_PRO_2026_03_05';
|
|
5908
5867
|
interface V1ResponsesInputItem extends V1ResponsesInputItemItemOneOf {
|
|
5909
5868
|
/**
|
|
5910
5869
|
* A message input to the model with a role indicating instruction following hierarchy.
|
|
@@ -7503,6 +7462,242 @@ interface InvokeCustomOpenAiModelRequestResponseFormat {
|
|
|
7503
7462
|
/** The schema object describes the output object for the model. Currently, only the JSON Schema Object is supported. */
|
|
7504
7463
|
schema?: Record<string, any> | null;
|
|
7505
7464
|
}
|
|
7465
|
+
interface CreateContentTaskRequest {
|
|
7466
|
+
/**
|
|
7467
|
+
* The model to use for content creation.
|
|
7468
|
+
* @maxLength 255
|
|
7469
|
+
*/
|
|
7470
|
+
model?: string;
|
|
7471
|
+
/**
|
|
7472
|
+
* The context items to create the content from.
|
|
7473
|
+
* @maxSize 50
|
|
7474
|
+
*/
|
|
7475
|
+
content?: ContentItem[];
|
|
7476
|
+
/**
|
|
7477
|
+
* Returns the last frame image of the generated video. Default: false
|
|
7478
|
+
* Useful for generating multiple consecutive videos using the last frame as the first frame of the next video.
|
|
7479
|
+
*/
|
|
7480
|
+
returnLastFrame?: boolean | null;
|
|
7481
|
+
/**
|
|
7482
|
+
* Service tier for processing the request. Default: default
|
|
7483
|
+
* can be one of:
|
|
7484
|
+
* default: Online inference mode (lower RPM, lower latency)
|
|
7485
|
+
* flex: Offline inference mode (higher TPD quota, 50% price, higher latency)
|
|
7486
|
+
* @maxLength 255
|
|
7487
|
+
*/
|
|
7488
|
+
serviceTier?: string | null;
|
|
7489
|
+
/**
|
|
7490
|
+
* Whether the generated video includes audio synchronized with the visuals. Default: true
|
|
7491
|
+
* Only supported by Seedance 1.5 pro
|
|
7492
|
+
*/
|
|
7493
|
+
generateAudio?: boolean | null;
|
|
7494
|
+
/**
|
|
7495
|
+
* Whether to enable Draft sample mode. Default: false
|
|
7496
|
+
* Only supported by Seedance 1.5 pro
|
|
7497
|
+
* true: Generate a 480p preview video (lower cost)
|
|
7498
|
+
* false: Generate a standard video
|
|
7499
|
+
*/
|
|
7500
|
+
draft?: boolean | null;
|
|
7501
|
+
/**
|
|
7502
|
+
* The resolution of the output video. Default: 720p for Seedance 1.5 pro/lite, 1080p for pro/pro-fast
|
|
7503
|
+
* Valid values: 480p, 720p, 1080p
|
|
7504
|
+
* @maxLength 255
|
|
7505
|
+
*/
|
|
7506
|
+
resolution?: string | null;
|
|
7507
|
+
/**
|
|
7508
|
+
* The aspect ratio of the output video. Default varies by model and scenario.
|
|
7509
|
+
* Valid values: 16:9, 4:3, 1:1, 3:4, 9:16, 21:9, adaptive
|
|
7510
|
+
* @maxLength 255
|
|
7511
|
+
*/
|
|
7512
|
+
ratio?: string | null;
|
|
7513
|
+
/**
|
|
7514
|
+
* The duration of the output video in seconds. Default: 5
|
|
7515
|
+
* Value range: 2-12s
|
|
7516
|
+
* Seedance 1.5 pro: Use -1 to let the model decide duration (4-12s)
|
|
7517
|
+
* set max to to 120 for future changes
|
|
7518
|
+
* Choose either duration or frames; frames takes priority.
|
|
7519
|
+
* @min -1
|
|
7520
|
+
* @max 120
|
|
7521
|
+
*/
|
|
7522
|
+
duration?: number | null;
|
|
7523
|
+
/**
|
|
7524
|
+
* Number of frames for the output video. Not supported by Seedance 1.5 pro.
|
|
7525
|
+
* Valid range: integers within [29, 289] that conform to format 25 + 4n (where n is positive integer)
|
|
7526
|
+
* Choose either duration or frames; frames takes priority.
|
|
7527
|
+
* Set max to 2890 for fuure changes
|
|
7528
|
+
* @min 29
|
|
7529
|
+
* @max 2890
|
|
7530
|
+
*/
|
|
7531
|
+
frames?: number | null;
|
|
7532
|
+
/**
|
|
7533
|
+
* The seed controls randomness of output. Default: -1 (random)
|
|
7534
|
+
* Valid values: integers within [-1, 2^32-1]
|
|
7535
|
+
* @min -1
|
|
7536
|
+
* @max 4294967295
|
|
7537
|
+
*/
|
|
7538
|
+
seed?: number | null;
|
|
7539
|
+
/**
|
|
7540
|
+
* Specifies whether to fix the camera. Default: false
|
|
7541
|
+
* Not supported for reference-image-to-video
|
|
7542
|
+
*/
|
|
7543
|
+
cameraFixed?: boolean | null;
|
|
7544
|
+
/** Specifies whether to add watermarks to the output video. Default: false */
|
|
7545
|
+
watermark?: boolean | null;
|
|
7546
|
+
/**
|
|
7547
|
+
* Skip polling flag - if set to false, will poll until video generation is complete
|
|
7548
|
+
* If not set or true, returns immediately with task ID for manual polling
|
|
7549
|
+
*/
|
|
7550
|
+
skipPolling?: boolean | null;
|
|
7551
|
+
}
|
|
7552
|
+
interface ContentItem {
|
|
7553
|
+
/**
|
|
7554
|
+
* The type of the input content
|
|
7555
|
+
* Can be ont of 'text', 'image_url', 'draft_task'
|
|
7556
|
+
* @maxLength 255
|
|
7557
|
+
*/
|
|
7558
|
+
type?: string | null;
|
|
7559
|
+
/**
|
|
7560
|
+
* The input text information for the model (required when type=TEXT)
|
|
7561
|
+
* Describes the video to be generated. Can include text prompt and optional parameters.
|
|
7562
|
+
* @maxLength 100000
|
|
7563
|
+
*/
|
|
7564
|
+
text?: string | null;
|
|
7565
|
+
/** The input image object for the model (required when type=IMAGE_URL) */
|
|
7566
|
+
imageUrl?: ImageUrl;
|
|
7567
|
+
/**
|
|
7568
|
+
* The location or purpose of the image (required under certain conditions when type=IMAGE_URL)
|
|
7569
|
+
* Used for Image-to-Video scenarios
|
|
7570
|
+
* available values are:
|
|
7571
|
+
* 'last_frame', 'first_frame', 'reference_image'
|
|
7572
|
+
* @maxLength 255
|
|
7573
|
+
*/
|
|
7574
|
+
role?: string | null;
|
|
7575
|
+
/**
|
|
7576
|
+
* The draft task object for generating official video from a draft.
|
|
7577
|
+
* Only supported by Seedance 1.5 Pro.
|
|
7578
|
+
* The platform will reuse the inputs from the draft video to generate the official video.
|
|
7579
|
+
*/
|
|
7580
|
+
draftTask?: DraftTask;
|
|
7581
|
+
}
|
|
7582
|
+
interface ImageUrl {
|
|
7583
|
+
/**
|
|
7584
|
+
* The image information, can be an image URL or Base64-encoded content
|
|
7585
|
+
* URL: Must be accessible
|
|
7586
|
+
* Base64: Format must be data:image/<format>;base64,<content> (e.g., data:image/png;base64,...)
|
|
7587
|
+
* Requirements: JPEG/PNG/WebP/BMP/TIFF/GIF (Seedance 1.5 Pro also supports HEIC/HEIF)
|
|
7588
|
+
* Aspect ratio: 0.4 to 2.5, shorter side > 300px, longer side < 6000px, size < 30MB
|
|
7589
|
+
* @maxLength 100000
|
|
7590
|
+
*/
|
|
7591
|
+
url?: string | null;
|
|
7592
|
+
}
|
|
7593
|
+
interface DraftTask {
|
|
7594
|
+
/**
|
|
7595
|
+
* The draft video task ID.
|
|
7596
|
+
* The platform will automatically reuse the user inputs applied by the draft video
|
|
7597
|
+
* (including model, content.text, content.image_url, generate_audio, seed, ratio, duration, frames, camera_fixed)
|
|
7598
|
+
* to generate the official video.
|
|
7599
|
+
* @maxLength 1000
|
|
7600
|
+
*/
|
|
7601
|
+
_id?: string | null;
|
|
7602
|
+
}
|
|
7603
|
+
interface GenerateImageRequest {
|
|
7604
|
+
/**
|
|
7605
|
+
* The model to use for image generation.
|
|
7606
|
+
* Accepts a model ID (e.g. "seedream-5.0-lite", "seedream-4.5", "seedream-4.0") or an Endpoint ID.
|
|
7607
|
+
* @maxLength 255
|
|
7608
|
+
*/
|
|
7609
|
+
model?: string;
|
|
7610
|
+
/**
|
|
7611
|
+
* Text prompt describing the image to generate.
|
|
7612
|
+
* Recommended: keep under 600 English words. Excessively long prompts may cause the model
|
|
7613
|
+
* to overlook details and focus only on major elements.
|
|
7614
|
+
* @maxLength 100000
|
|
7615
|
+
*/
|
|
7616
|
+
prompt?: string;
|
|
7617
|
+
/**
|
|
7618
|
+
* Reference image(s) as URL or base64-encoded string. Max 14 reference images.
|
|
7619
|
+
*
|
|
7620
|
+
* Input formats:
|
|
7621
|
+
* - Image URL: must be publicly accessible.
|
|
7622
|
+
* - Base64: format must be "data:image/<format>;base64,<content>" (e.g. "data:image/png;base64,...").
|
|
7623
|
+
*
|
|
7624
|
+
* Image requirements:
|
|
7625
|
+
* - Formats: JPEG, PNG, WEBP, BMP, TIFF, GIF
|
|
7626
|
+
* - Aspect ratio (width/height): between [1/16, 16]
|
|
7627
|
+
* - Width and height: > 14px
|
|
7628
|
+
* - Size: up to 10 MB per image
|
|
7629
|
+
* - Total pixels: no more than 6000x6000 = 36,000,000 per image
|
|
7630
|
+
* @maxLength 3825
|
|
7631
|
+
* @maxSize 15
|
|
7632
|
+
*/
|
|
7633
|
+
image?: string[];
|
|
7634
|
+
/**
|
|
7635
|
+
* Output image dimensions. Two methods available (cannot be combined):
|
|
7636
|
+
*
|
|
7637
|
+
* Method 1 - Resolution shorthand (let the model determine width/height from prompt context):
|
|
7638
|
+
* seedream-5.0-lite: "2K", "3K"
|
|
7639
|
+
* seedream-4.5: "2K", "4K"
|
|
7640
|
+
* seedream-4.0: "1K", "2K", "4K"
|
|
7641
|
+
*
|
|
7642
|
+
* Method 2 - Explicit pixel dimensions (e.g. "2048x2048"):
|
|
7643
|
+
* Both total pixel range AND aspect ratio [1/16, 16] must be satisfied.
|
|
7644
|
+
* seedream-5.0-lite: total pixels [3,686,400 .. 10,404,496], default "2048x2048"
|
|
7645
|
+
* seedream-4.5: total pixels [3,686,400 .. 16,777,216], default "2048x2048"
|
|
7646
|
+
* seedream-4.0: total pixels [921,600 .. 16,777,216], default "2048x2048"
|
|
7647
|
+
*
|
|
7648
|
+
* Common recommended dimensions (2K):
|
|
7649
|
+
* 1:1 = 2048x2048, 4:3 = 2304x1728, 3:4 = 1728x2304,
|
|
7650
|
+
* 16:9 = 2848x1600, 9:16 = 1600x2848, 21:9 = 3136x1344
|
|
7651
|
+
* @maxLength 255
|
|
7652
|
+
*/
|
|
7653
|
+
size?: string | null;
|
|
7654
|
+
/**
|
|
7655
|
+
* How the generated images are returned. Default: "url".
|
|
7656
|
+
* "url": returns a download link valid for 24 hours after generation.
|
|
7657
|
+
* "b64_json": returns the image data as a Base64-encoded string in JSON.
|
|
7658
|
+
* @maxLength 255
|
|
7659
|
+
*/
|
|
7660
|
+
responseFormat?: string | null;
|
|
7661
|
+
/** Whether to add an "AI generated" watermark on the bottom-right corner. Default: true. */
|
|
7662
|
+
watermark?: boolean | null;
|
|
7663
|
+
/**
|
|
7664
|
+
* Whether to enable batch (sequential) image generation. Default: "disabled".
|
|
7665
|
+
* "auto": the model decides whether to return multiple images and how many, based on the prompt.
|
|
7666
|
+
* "disabled": only one image is generated.
|
|
7667
|
+
* @maxLength 255
|
|
7668
|
+
*/
|
|
7669
|
+
sequentialImageGeneration?: string | null;
|
|
7670
|
+
/** Configuration for batch image generation. Only effective when sequential_image_generation = "auto". */
|
|
7671
|
+
sequentialImageGenerationOptions?: SequentialImageGenerationOptions;
|
|
7672
|
+
/**
|
|
7673
|
+
* Output image file format. Default: "jpeg".
|
|
7674
|
+
* "jpeg": supported by all models (default, cannot be changed on seedream-4.5/4.0).
|
|
7675
|
+
* "png": only supported by seedream-5.0-lite.
|
|
7676
|
+
* @maxLength 255
|
|
7677
|
+
*/
|
|
7678
|
+
outputFormat?: string | null;
|
|
7679
|
+
/**
|
|
7680
|
+
* Configuration for prompt optimization.
|
|
7681
|
+
* Supported by seedream-5.0-lite, seedream-4.5 (standard mode only), and seedream-4.0.
|
|
7682
|
+
*/
|
|
7683
|
+
optimizePromptOptions?: OptimizePromptOptions;
|
|
7684
|
+
}
|
|
7685
|
+
interface SequentialImageGenerationOptions {
|
|
7686
|
+
/**
|
|
7687
|
+
* Maximum number of images to generate in this request. Default: 15. Range: [1, 15].
|
|
7688
|
+
* Actual count is constrained by: number of input reference images + generated images <= 15.
|
|
7689
|
+
*/
|
|
7690
|
+
maxImages?: number | null;
|
|
7691
|
+
}
|
|
7692
|
+
interface OptimizePromptOptions {
|
|
7693
|
+
/**
|
|
7694
|
+
* Prompt optimization mode. Default: "standard".
|
|
7695
|
+
* "standard": higher quality, longer generation time.
|
|
7696
|
+
* "fast": faster but lower quality.
|
|
7697
|
+
* @maxLength 255
|
|
7698
|
+
*/
|
|
7699
|
+
mode?: string | null;
|
|
7700
|
+
}
|
|
7506
7701
|
interface ContentGenerationRequestedEvent {
|
|
7507
7702
|
/** Prompt that the generation was requested for. */
|
|
7508
7703
|
prompt?: Prompt;
|
|
@@ -7517,6 +7712,8 @@ interface ContentGenerationRequestedEvent {
|
|
|
7517
7712
|
* @format GUID
|
|
7518
7713
|
*/
|
|
7519
7714
|
eventChainId?: string;
|
|
7715
|
+
/** Dynamic request configuration, including dynamic tools and messages. */
|
|
7716
|
+
dynamicRequestConfig?: DynamicRequestConfig;
|
|
7520
7717
|
}
|
|
7521
7718
|
interface UserRequestInfo {
|
|
7522
7719
|
/**
|
|
@@ -7542,106 +7739,272 @@ interface UserRequestInfo {
|
|
|
7542
7739
|
*/
|
|
7543
7740
|
costAttributionOverrideId?: string | null;
|
|
7544
7741
|
}
|
|
7545
|
-
interface
|
|
7546
|
-
/** Model response object that describes the content generation result. */
|
|
7547
|
-
response?: GenerateContentModelResponse;
|
|
7548
|
-
/** Prompt's final form that was used to issue a GenerateContent request. */
|
|
7549
|
-
materializedPrompt?: Prompt;
|
|
7742
|
+
interface DynamicRequestConfig {
|
|
7550
7743
|
/**
|
|
7551
|
-
*
|
|
7552
|
-
* @
|
|
7744
|
+
* List of GatewayToolDefinition's, used to overwrite tools in the prompt.
|
|
7745
|
+
* @maxSize 1000
|
|
7553
7746
|
*/
|
|
7554
|
-
|
|
7747
|
+
gatewayToolDefinitions?: GatewayToolDefinition[];
|
|
7748
|
+
/**
|
|
7749
|
+
* List of GatewayMessageDefinition's, which will be converted to model-specific format and appended to the messages saved in the prompt.
|
|
7750
|
+
* @maxSize 10000
|
|
7751
|
+
*/
|
|
7752
|
+
gatewayMessageDefinitions?: GatewayMessageDefinition[];
|
|
7555
7753
|
}
|
|
7556
|
-
interface
|
|
7557
|
-
/**
|
|
7558
|
-
|
|
7559
|
-
/**
|
|
7560
|
-
|
|
7561
|
-
/** Google bison chat completion response. */
|
|
7562
|
-
googleChatBisonResponse?: ChatBisonPredictResponse;
|
|
7563
|
-
/** Azure OpenAI chat completion response. */
|
|
7564
|
-
azureChatCompletionResponse?: CreateChatCompletionResponse;
|
|
7565
|
-
/** Google Gemini generate content response. */
|
|
7566
|
-
googleGeminiGenerateContentResponse?: GenerateContentResponse;
|
|
7567
|
-
/** Anthropic Claude via Amazon Bedrock generate content response. */
|
|
7568
|
-
anthropicClaudeResponse?: InvokeAnthropicClaudeModelResponse;
|
|
7569
|
-
/** Anthropic Claude via Google vertex generate content response. */
|
|
7570
|
-
googleAnthropicClaudeResponse?: V1InvokeAnthropicClaudeModelResponse;
|
|
7571
|
-
/** Native Anthropic API proxy generate content response. */
|
|
7572
|
-
invokeAnthropicModelResponse?: InvokeAnthropicModelResponse;
|
|
7573
|
-
/** Llama via Amazon Bedrock text completion response. */
|
|
7574
|
-
llamaModelResponse?: InvokeLlamaModelResponse;
|
|
7575
|
-
/** Invoke Amazon Converse API response. */
|
|
7576
|
-
amazonConverseResponse?: InvokeConverseResponse;
|
|
7577
|
-
/** Llama via ML Platform text completion response. */
|
|
7578
|
-
mlPlatformLlamaModelResponse?: InvokeMlPlatformLlamaModelResponse;
|
|
7579
|
-
/** Perplexity chat completion response. */
|
|
7580
|
-
perplexityChatCompletionResponse?: InvokeChatCompletionResponse;
|
|
7581
|
-
/** OpenAI image generation response. */
|
|
7582
|
-
openAiCreateImageResponse?: CreateImageResponse;
|
|
7583
|
-
/** Stability AI text to image response. */
|
|
7584
|
-
stabilityAiTextToImageResponse?: V1TextToImageResponse;
|
|
7585
|
-
/** Stability AI generate core response. */
|
|
7586
|
-
stabilityAiGenerateCoreResponse?: GenerateCoreResponse;
|
|
7587
|
-
/** Stability AI - Stable Diffusion 3.0 & 3.5 response. */
|
|
7588
|
-
stabilityAiStableDiffusionResponse?: GenerateStableDiffusionResponse;
|
|
7589
|
-
/** Black Forest Labs image generation response. */
|
|
7590
|
-
blackForestLabsGenerateImageResponse?: GenerateAnImageResponse;
|
|
7591
|
-
/** Replicate image generation response. */
|
|
7592
|
-
replicateCreatePredictionResponse?: CreatePredictionResponse;
|
|
7593
|
-
/** Stability AI - Edit Image with prompt response. */
|
|
7594
|
-
stabilityAiEditImageWithPromptResponse?: EditImageWithPromptResponse;
|
|
7595
|
-
/** Runware AI - Flux TextToImage response. */
|
|
7596
|
-
runwareTextToImageResponse?: TextToImageResponse;
|
|
7597
|
-
/** Google AI - Generate Image with Imagen Model response. */
|
|
7598
|
-
googleGenerateImageResponse?: GenerateImageResponse;
|
|
7599
|
-
/** Google AI - Generate Video response. */
|
|
7600
|
-
googleGenerateVideoResponse?: GenerateVideoResponse;
|
|
7601
|
-
/** ML generate image response. */
|
|
7602
|
-
mlPlatformGenerateImageResponse?: GenerateImageMlPlatformResponse;
|
|
7603
|
-
/** OpenAI image creation response. */
|
|
7604
|
-
openAiCreateOpenAiImageResponse?: CreateImageOpenAiResponse;
|
|
7605
|
-
/** OpenAI image edit response. */
|
|
7606
|
-
openAiEditOpenAiImageResponse?: EditImageOpenAiResponse;
|
|
7607
|
-
/** Google create chat completion response. */
|
|
7608
|
-
googleCreateChatCompletionResponse?: V1CreateChatCompletionResponse;
|
|
7609
|
-
/** ML Platform - invoke an OpenAI-type interface with a JSON string */
|
|
7610
|
-
mlPlatformOpenAiRawResponse?: InvokeMlPlatformOpenAIChatCompletionRawResponse;
|
|
7611
|
-
/** Runware Video inference response */
|
|
7612
|
-
runwareVideoInferenceResponse?: VideoInferenceResponse;
|
|
7613
|
-
/** Open AI Responses API response */
|
|
7614
|
-
openAiResponsesResponse?: V1OpenAiResponsesResponse;
|
|
7615
|
-
/** Open AI Responses API response via Azure */
|
|
7616
|
-
azureOpenAiResponsesResponse?: OpenAiResponsesResponse;
|
|
7617
|
-
/** OpenAI video generation response */
|
|
7618
|
-
openAiCreateVideoResponse?: CreateVideoResponse;
|
|
7619
|
-
/** Fireworks - OpenAI payload */
|
|
7620
|
-
fireworksInvokeCustomOpenAiResponse?: InvokeCustomOpenAiModelResponse;
|
|
7621
|
-
/** Extracted generated content data from the model's response. */
|
|
7622
|
-
generatedContent?: GeneratedContent;
|
|
7623
|
-
/** Extracted cost of the request in microcents. */
|
|
7624
|
-
cost?: string | null;
|
|
7625
|
-
/** Token usage information. */
|
|
7626
|
-
tokenUsage?: V1TokenUsage;
|
|
7627
|
-
/** Metadata about the response, such as finish reason. */
|
|
7628
|
-
responseMetadata?: ResponseMetadata;
|
|
7754
|
+
interface GatewayToolDefinition extends GatewayToolDefinitionToolOneOf {
|
|
7755
|
+
/** Custom tool */
|
|
7756
|
+
customTool?: GatewayToolDefinitionCustomTool;
|
|
7757
|
+
/** Built-in tool */
|
|
7758
|
+
builtInTool?: BuiltInTool;
|
|
7629
7759
|
}
|
|
7630
7760
|
/** @oneof */
|
|
7631
|
-
interface
|
|
7632
|
-
/**
|
|
7633
|
-
|
|
7634
|
-
/**
|
|
7635
|
-
|
|
7636
|
-
|
|
7637
|
-
|
|
7638
|
-
/**
|
|
7639
|
-
|
|
7640
|
-
|
|
7641
|
-
|
|
7642
|
-
|
|
7643
|
-
|
|
7644
|
-
|
|
7761
|
+
interface GatewayToolDefinitionToolOneOf {
|
|
7762
|
+
/** Custom tool */
|
|
7763
|
+
customTool?: GatewayToolDefinitionCustomTool;
|
|
7764
|
+
/** Built-in tool */
|
|
7765
|
+
builtInTool?: BuiltInTool;
|
|
7766
|
+
}
|
|
7767
|
+
interface GatewayToolDefinitionCustomTool {
|
|
7768
|
+
/**
|
|
7769
|
+
* The name of the tool to be called.
|
|
7770
|
+
* @maxLength 64
|
|
7771
|
+
*/
|
|
7772
|
+
name?: string | null;
|
|
7773
|
+
/**
|
|
7774
|
+
* The description of what the tool does.
|
|
7775
|
+
* @maxLength 100000
|
|
7776
|
+
*/
|
|
7777
|
+
description?: string | null;
|
|
7778
|
+
/** The parameters the tool accepts, described as a JSON Schema object. */
|
|
7779
|
+
parameters?: Record<string, any> | null;
|
|
7780
|
+
}
|
|
7781
|
+
interface BuiltInTool {
|
|
7782
|
+
/**
|
|
7783
|
+
* The name of the tool to be called.
|
|
7784
|
+
* @maxLength 64
|
|
7785
|
+
*/
|
|
7786
|
+
name?: string | null;
|
|
7787
|
+
/** Optional parameters specific to the built-in tool. */
|
|
7788
|
+
parameters?: Record<string, any> | null;
|
|
7789
|
+
}
|
|
7790
|
+
interface GatewayMessageDefinition {
|
|
7791
|
+
/** The role of the message author. */
|
|
7792
|
+
role?: GatewayMessageDefinitionRoleWithLiterals;
|
|
7793
|
+
/**
|
|
7794
|
+
* The content of the message.
|
|
7795
|
+
* @maxSize 4096
|
|
7796
|
+
*/
|
|
7797
|
+
content?: GatewayContentBlock[];
|
|
7798
|
+
}
|
|
7799
|
+
declare enum GatewayMessageDefinitionRole {
|
|
7800
|
+
UNKNOWN = "UNKNOWN",
|
|
7801
|
+
USER = "USER",
|
|
7802
|
+
ASSISTANT = "ASSISTANT",
|
|
7803
|
+
SYSTEM = "SYSTEM",
|
|
7804
|
+
TOOL = "TOOL",
|
|
7805
|
+
DEVELOPER = "DEVELOPER"
|
|
7806
|
+
}
|
|
7807
|
+
/** @enumType */
|
|
7808
|
+
type GatewayMessageDefinitionRoleWithLiterals = GatewayMessageDefinitionRole | 'UNKNOWN' | 'USER' | 'ASSISTANT' | 'SYSTEM' | 'TOOL' | 'DEVELOPER';
|
|
7809
|
+
interface GatewayContentBlock extends GatewayContentBlockTypeOneOf {
|
|
7810
|
+
/** Text content. */
|
|
7811
|
+
text?: TextContent;
|
|
7812
|
+
/** Media content, represented as URL. */
|
|
7813
|
+
media?: MediaContent;
|
|
7814
|
+
/** Tool use content, describes which tool should be used and with which parameters. */
|
|
7815
|
+
toolUse?: ToolUseContent;
|
|
7816
|
+
/** Tool result content, describes the result of tool invocation. */
|
|
7817
|
+
toolResult?: ToolResultContent;
|
|
7818
|
+
/** Represents model's internal thought process. */
|
|
7819
|
+
thinking?: ThinkingTextContent;
|
|
7820
|
+
}
|
|
7821
|
+
/** @oneof */
|
|
7822
|
+
interface GatewayContentBlockTypeOneOf {
|
|
7823
|
+
/** Text content. */
|
|
7824
|
+
text?: TextContent;
|
|
7825
|
+
/** Media content, represented as URL. */
|
|
7826
|
+
media?: MediaContent;
|
|
7827
|
+
/** Tool use content, describes which tool should be used and with which parameters. */
|
|
7828
|
+
toolUse?: ToolUseContent;
|
|
7829
|
+
/** Tool result content, describes the result of tool invocation. */
|
|
7830
|
+
toolResult?: ToolResultContent;
|
|
7831
|
+
/** Represents model's internal thought process. */
|
|
7832
|
+
thinking?: ThinkingTextContent;
|
|
7833
|
+
}
|
|
7834
|
+
interface TextContent {
|
|
7835
|
+
/**
|
|
7836
|
+
* Generated text
|
|
7837
|
+
* @maxLength 1000000
|
|
7838
|
+
*/
|
|
7839
|
+
generatedText?: string | null;
|
|
7840
|
+
/**
|
|
7841
|
+
* Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
|
|
7842
|
+
* @maxLength 10000000
|
|
7843
|
+
*/
|
|
7844
|
+
thoughtSignature?: string | null;
|
|
7845
|
+
}
|
|
7846
|
+
interface MediaContent {
|
|
7847
|
+
/**
|
|
7848
|
+
* Mime type, e.g. "image/jpeg" or "video/mp4"
|
|
7849
|
+
* @maxLength 500
|
|
7850
|
+
*/
|
|
7851
|
+
mimeType?: string | null;
|
|
7852
|
+
/**
|
|
7853
|
+
* Wix Media Platform (WixMP) url where the image or video is stored.
|
|
7854
|
+
* @maxLength 5000
|
|
7855
|
+
*/
|
|
7856
|
+
url?: string;
|
|
7857
|
+
/**
|
|
7858
|
+
* Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
|
|
7859
|
+
* @maxLength 10000000
|
|
7860
|
+
*/
|
|
7861
|
+
thoughtSignature?: string | null;
|
|
7862
|
+
}
|
|
7863
|
+
interface ToolUseContent {
|
|
7864
|
+
/**
|
|
7865
|
+
* Tool use id
|
|
7866
|
+
* @maxLength 100
|
|
7867
|
+
*/
|
|
7868
|
+
_id?: string | null;
|
|
7869
|
+
/**
|
|
7870
|
+
* Tool use name
|
|
7871
|
+
* @maxLength 1000
|
|
7872
|
+
*/
|
|
7873
|
+
name?: string;
|
|
7874
|
+
/** Tool use input */
|
|
7875
|
+
input?: Record<string, any> | null;
|
|
7876
|
+
/**
|
|
7877
|
+
* Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
|
|
7878
|
+
* @maxLength 10000000
|
|
7879
|
+
*/
|
|
7880
|
+
thoughtSignature?: string | null;
|
|
7881
|
+
}
|
|
7882
|
+
interface ToolResultContent {
|
|
7883
|
+
/**
|
|
7884
|
+
* Tool use id
|
|
7885
|
+
* @maxLength 100
|
|
7886
|
+
*/
|
|
7887
|
+
toolUseId?: string | null;
|
|
7888
|
+
/** Tool result is error. */
|
|
7889
|
+
error?: boolean | null;
|
|
7890
|
+
/**
|
|
7891
|
+
* Tool result content.
|
|
7892
|
+
* @maxSize 4096
|
|
7893
|
+
*/
|
|
7894
|
+
content?: GatewayContentBlock[];
|
|
7895
|
+
}
|
|
7896
|
+
interface ThinkingTextContent {
|
|
7897
|
+
/**
|
|
7898
|
+
* The thought text of the model thinking
|
|
7899
|
+
* @maxLength 1000000
|
|
7900
|
+
*/
|
|
7901
|
+
thoughtText?: string | null;
|
|
7902
|
+
/**
|
|
7903
|
+
* Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
|
|
7904
|
+
* @maxLength 10000000
|
|
7905
|
+
*/
|
|
7906
|
+
thoughtSignature?: string | null;
|
|
7907
|
+
}
|
|
7908
|
+
interface ContentGenerationSucceededEvent {
|
|
7909
|
+
/** Model response object that describes the content generation result. */
|
|
7910
|
+
response?: GenerateContentModelResponse;
|
|
7911
|
+
/** Prompt's final form that was used to issue a GenerateContent request. */
|
|
7912
|
+
materializedPrompt?: Prompt;
|
|
7913
|
+
/**
|
|
7914
|
+
* Event chain identifier id. Uniquely generated for each Generate* endpoint call, and stays consistent throughout its lifecycle. Used for correspondence between request events and response events.
|
|
7915
|
+
* @format GUID
|
|
7916
|
+
*/
|
|
7917
|
+
eventChainId?: string;
|
|
7918
|
+
}
|
|
7919
|
+
interface GenerateContentModelResponse extends GenerateContentModelResponseResponseOneOf {
|
|
7920
|
+
/** OpenAI chat completion response. */
|
|
7921
|
+
openAiChatCompletionResponse?: OpenaiproxyV1CreateChatCompletionResponse;
|
|
7922
|
+
/** Google bison text completion response. */
|
|
7923
|
+
googleTextBisonResponse?: TextBisonPredictResponse;
|
|
7924
|
+
/** Azure OpenAI chat completion response. */
|
|
7925
|
+
azureChatCompletionResponse?: CreateChatCompletionResponse;
|
|
7926
|
+
/** Google Gemini generate content response. */
|
|
7927
|
+
googleGeminiGenerateContentResponse?: GenerateContentResponse;
|
|
7928
|
+
/** Anthropic Claude via Amazon Bedrock generate content response. */
|
|
7929
|
+
anthropicClaudeResponse?: InvokeAnthropicClaudeModelResponse;
|
|
7930
|
+
/** Anthropic Claude via Google vertex generate content response. */
|
|
7931
|
+
googleAnthropicClaudeResponse?: V1InvokeAnthropicClaudeModelResponse;
|
|
7932
|
+
/** Native Anthropic API proxy generate content response. */
|
|
7933
|
+
invokeAnthropicModelResponse?: InvokeAnthropicModelResponse;
|
|
7934
|
+
/** Llama via Amazon Bedrock text completion response. */
|
|
7935
|
+
llamaModelResponse?: InvokeLlamaModelResponse;
|
|
7936
|
+
/** Invoke Amazon Converse API response. */
|
|
7937
|
+
amazonConverseResponse?: InvokeConverseResponse;
|
|
7938
|
+
/** Llama via ML Platform text completion response. */
|
|
7939
|
+
mlPlatformLlamaModelResponse?: InvokeMlPlatformLlamaModelResponse;
|
|
7940
|
+
/** Perplexity chat completion response. */
|
|
7941
|
+
perplexityChatCompletionResponse?: InvokeChatCompletionResponse;
|
|
7942
|
+
/** OpenAI image generation response. */
|
|
7943
|
+
openAiCreateImageResponse?: CreateImageResponse;
|
|
7944
|
+
/** Stability AI text to image response. */
|
|
7945
|
+
stabilityAiTextToImageResponse?: V1TextToImageResponse;
|
|
7946
|
+
/** Stability AI generate core response. */
|
|
7947
|
+
stabilityAiGenerateCoreResponse?: GenerateCoreResponse;
|
|
7948
|
+
/** Stability AI - Stable Diffusion 3.0 & 3.5 response. */
|
|
7949
|
+
stabilityAiStableDiffusionResponse?: GenerateStableDiffusionResponse;
|
|
7950
|
+
/** Black Forest Labs image generation response. */
|
|
7951
|
+
blackForestLabsGenerateImageResponse?: GenerateAnImageResponse;
|
|
7952
|
+
/** Replicate image generation response. */
|
|
7953
|
+
replicateCreatePredictionResponse?: CreatePredictionResponse;
|
|
7954
|
+
/** Stability AI - Edit Image with prompt response. */
|
|
7955
|
+
stabilityAiEditImageWithPromptResponse?: EditImageWithPromptResponse;
|
|
7956
|
+
/** Runware AI - Flux TextToImage response. */
|
|
7957
|
+
runwareTextToImageResponse?: TextToImageResponse;
|
|
7958
|
+
/** Google AI - Generate Image with Imagen Model response. */
|
|
7959
|
+
googleGenerateImageResponse?: V1GenerateImageResponse;
|
|
7960
|
+
/** Google AI - Generate Video response. */
|
|
7961
|
+
googleGenerateVideoResponse?: GenerateVideoResponse;
|
|
7962
|
+
/** ML generate image response. */
|
|
7963
|
+
mlPlatformGenerateImageResponse?: GenerateImageMlPlatformResponse;
|
|
7964
|
+
/** OpenAI image creation response. */
|
|
7965
|
+
openAiCreateOpenAiImageResponse?: CreateImageOpenAiResponse;
|
|
7966
|
+
/** OpenAI image edit response. */
|
|
7967
|
+
openAiEditOpenAiImageResponse?: EditImageOpenAiResponse;
|
|
7968
|
+
/** Google create chat completion response. */
|
|
7969
|
+
googleCreateChatCompletionResponse?: V1CreateChatCompletionResponse;
|
|
7970
|
+
/** ML Platform - invoke an OpenAI-type interface with a JSON string */
|
|
7971
|
+
mlPlatformOpenAiRawResponse?: InvokeMlPlatformOpenAIChatCompletionRawResponse;
|
|
7972
|
+
/** Runware Video inference response */
|
|
7973
|
+
runwareVideoInferenceResponse?: VideoInferenceResponse;
|
|
7974
|
+
/** Open AI Responses API response */
|
|
7975
|
+
openAiResponsesResponse?: V1OpenAiResponsesResponse;
|
|
7976
|
+
/** Open AI Responses API response via Azure */
|
|
7977
|
+
azureOpenAiResponsesResponse?: OpenAiResponsesResponse;
|
|
7978
|
+
/** OpenAI video generation response */
|
|
7979
|
+
openAiCreateVideoResponse?: CreateVideoResponse;
|
|
7980
|
+
/** Fireworks - OpenAI payload */
|
|
7981
|
+
fireworksInvokeCustomOpenAiResponse?: InvokeCustomOpenAiModelResponse;
|
|
7982
|
+
/** Bytedance - Create content task response (video generation) */
|
|
7983
|
+
bytedanceCreateContentTaskResponse?: CreateContentTaskResponse;
|
|
7984
|
+
/** Bytedance - Generate image response (Seedream models) */
|
|
7985
|
+
bytedanceGenerateImageResponse?: GenerateImageResponse;
|
|
7986
|
+
/** Extracted generated content data from the model's response. */
|
|
7987
|
+
generatedContent?: GeneratedContent;
|
|
7988
|
+
/** Extracted cost of the request in microcents. */
|
|
7989
|
+
cost?: string | null;
|
|
7990
|
+
/** Token usage information. */
|
|
7991
|
+
tokenUsage?: V1TokenUsage;
|
|
7992
|
+
/** Metadata about the response, such as finish reason. */
|
|
7993
|
+
responseMetadata?: ResponseMetadata;
|
|
7994
|
+
}
|
|
7995
|
+
/** @oneof */
|
|
7996
|
+
interface GenerateContentModelResponseResponseOneOf {
|
|
7997
|
+
/** OpenAI chat completion response. */
|
|
7998
|
+
openAiChatCompletionResponse?: OpenaiproxyV1CreateChatCompletionResponse;
|
|
7999
|
+
/** Google bison text completion response. */
|
|
8000
|
+
googleTextBisonResponse?: TextBisonPredictResponse;
|
|
8001
|
+
/** Azure OpenAI chat completion response. */
|
|
8002
|
+
azureChatCompletionResponse?: CreateChatCompletionResponse;
|
|
8003
|
+
/** Google Gemini generate content response. */
|
|
8004
|
+
googleGeminiGenerateContentResponse?: GenerateContentResponse;
|
|
8005
|
+
/** Anthropic Claude via Amazon Bedrock generate content response. */
|
|
8006
|
+
anthropicClaudeResponse?: InvokeAnthropicClaudeModelResponse;
|
|
8007
|
+
/** Anthropic Claude via Google vertex generate content response. */
|
|
7645
8008
|
googleAnthropicClaudeResponse?: V1InvokeAnthropicClaudeModelResponse;
|
|
7646
8009
|
/** Native Anthropic API proxy generate content response. */
|
|
7647
8010
|
invokeAnthropicModelResponse?: InvokeAnthropicModelResponse;
|
|
@@ -7670,7 +8033,7 @@ interface GenerateContentModelResponseResponseOneOf {
|
|
|
7670
8033
|
/** Runware AI - Flux TextToImage response. */
|
|
7671
8034
|
runwareTextToImageResponse?: TextToImageResponse;
|
|
7672
8035
|
/** Google AI - Generate Image with Imagen Model response. */
|
|
7673
|
-
googleGenerateImageResponse?:
|
|
8036
|
+
googleGenerateImageResponse?: V1GenerateImageResponse;
|
|
7674
8037
|
/** Google AI - Generate Video response. */
|
|
7675
8038
|
googleGenerateVideoResponse?: GenerateVideoResponse;
|
|
7676
8039
|
/** ML generate image response. */
|
|
@@ -7693,6 +8056,10 @@ interface GenerateContentModelResponseResponseOneOf {
|
|
|
7693
8056
|
openAiCreateVideoResponse?: CreateVideoResponse;
|
|
7694
8057
|
/** Fireworks - OpenAI payload */
|
|
7695
8058
|
fireworksInvokeCustomOpenAiResponse?: InvokeCustomOpenAiModelResponse;
|
|
8059
|
+
/** Bytedance - Create content task response (video generation) */
|
|
8060
|
+
bytedanceCreateContentTaskResponse?: CreateContentTaskResponse;
|
|
8061
|
+
/** Bytedance - Generate image response (Seedream models) */
|
|
8062
|
+
bytedanceGenerateImageResponse?: GenerateImageResponse;
|
|
7696
8063
|
}
|
|
7697
8064
|
/** Model generation result, at least one of the fields should be present */
|
|
7698
8065
|
interface GeneratedContent {
|
|
@@ -7722,66 +8089,6 @@ interface GeneratedContent {
|
|
|
7722
8089
|
*/
|
|
7723
8090
|
tools?: ToolUseContent[];
|
|
7724
8091
|
}
|
|
7725
|
-
interface TextContent {
|
|
7726
|
-
/**
|
|
7727
|
-
* Generated text
|
|
7728
|
-
* @maxLength 1000000
|
|
7729
|
-
*/
|
|
7730
|
-
generatedText?: string | null;
|
|
7731
|
-
/**
|
|
7732
|
-
* Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
|
|
7733
|
-
* @maxLength 10000000
|
|
7734
|
-
*/
|
|
7735
|
-
thoughtSignature?: string | null;
|
|
7736
|
-
}
|
|
7737
|
-
interface MediaContent {
|
|
7738
|
-
/**
|
|
7739
|
-
* Mime type, e.g. "image/jpeg" or "video/mp4"
|
|
7740
|
-
* @maxLength 500
|
|
7741
|
-
*/
|
|
7742
|
-
mimeType?: string | null;
|
|
7743
|
-
/**
|
|
7744
|
-
* Wix Media Platform (WixMP) url where the image or video is stored.
|
|
7745
|
-
* @maxLength 5000
|
|
7746
|
-
*/
|
|
7747
|
-
url?: string;
|
|
7748
|
-
/**
|
|
7749
|
-
* Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
|
|
7750
|
-
* @maxLength 10000000
|
|
7751
|
-
*/
|
|
7752
|
-
thoughtSignature?: string | null;
|
|
7753
|
-
}
|
|
7754
|
-
interface ThinkingTextContent {
|
|
7755
|
-
/**
|
|
7756
|
-
* The thought text of the model thinking
|
|
7757
|
-
* @maxLength 1000000
|
|
7758
|
-
*/
|
|
7759
|
-
thoughtText?: string | null;
|
|
7760
|
-
/**
|
|
7761
|
-
* Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
|
|
7762
|
-
* @maxLength 10000000
|
|
7763
|
-
*/
|
|
7764
|
-
thoughtSignature?: string | null;
|
|
7765
|
-
}
|
|
7766
|
-
interface ToolUseContent {
|
|
7767
|
-
/**
|
|
7768
|
-
* Tool use id
|
|
7769
|
-
* @maxLength 100
|
|
7770
|
-
*/
|
|
7771
|
-
_id?: string | null;
|
|
7772
|
-
/**
|
|
7773
|
-
* Tool use name
|
|
7774
|
-
* @maxLength 1000
|
|
7775
|
-
*/
|
|
7776
|
-
name?: string;
|
|
7777
|
-
/** Tool use input */
|
|
7778
|
-
input?: Record<string, any> | null;
|
|
7779
|
-
/**
|
|
7780
|
-
* Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
|
|
7781
|
-
* @maxLength 10000000
|
|
7782
|
-
*/
|
|
7783
|
-
thoughtSignature?: string | null;
|
|
7784
|
-
}
|
|
7785
8092
|
interface V1TokenUsage {
|
|
7786
8093
|
/** Number of input tokens used in the request. */
|
|
7787
8094
|
inputTokens?: number | null;
|
|
@@ -7968,34 +8275,6 @@ interface TokenCount {
|
|
|
7968
8275
|
/** Number of billable characters */
|
|
7969
8276
|
totalBillableCharacters?: number | null;
|
|
7970
8277
|
}
|
|
7971
|
-
interface ChatBisonPredictResponse {
|
|
7972
|
-
/**
|
|
7973
|
-
* Response predictions
|
|
7974
|
-
* @maxSize 100
|
|
7975
|
-
*/
|
|
7976
|
-
predictions?: ChatBisonPrediction[];
|
|
7977
|
-
/** Response metadata */
|
|
7978
|
-
metadata?: Metadata;
|
|
7979
|
-
/** Cost of the request in microcents */
|
|
7980
|
-
microcentsSpent?: string | null;
|
|
7981
|
-
}
|
|
7982
|
-
interface ChatBisonPrediction {
|
|
7983
|
-
/**
|
|
7984
|
-
* The chat result generated from given message.
|
|
7985
|
-
* @maxSize 100
|
|
7986
|
-
*/
|
|
7987
|
-
candidates?: ChatMessage[];
|
|
7988
|
-
/**
|
|
7989
|
-
* Citation metadata
|
|
7990
|
-
* @maxSize 100
|
|
7991
|
-
*/
|
|
7992
|
-
citationMetadata?: CitationMetadata[];
|
|
7993
|
-
/**
|
|
7994
|
-
* An array of collections of categories and their associated confidence scores. 1-1 mapping to candidates.
|
|
7995
|
-
* @maxSize 100
|
|
7996
|
-
*/
|
|
7997
|
-
safetyAttributes?: SafetyAttribute[];
|
|
7998
|
-
}
|
|
7999
8278
|
interface CreateChatCompletionResponse {
|
|
8000
8279
|
/**
|
|
8001
8280
|
* A unique identifier for the chat completion.
|
|
@@ -8094,6 +8373,13 @@ interface Candidate {
|
|
|
8094
8373
|
* @maxLength 100000
|
|
8095
8374
|
*/
|
|
8096
8375
|
finishMessage?: string | null;
|
|
8376
|
+
/**
|
|
8377
|
+
* The raw finish reason string as returned by Google's API.
|
|
8378
|
+
* Preserves the original value even when it cannot be mapped to the FinishReason enum,
|
|
8379
|
+
* ensuring forward compatibility when Google adds new finish reason values.
|
|
8380
|
+
* @maxLength 1000
|
|
8381
|
+
*/
|
|
8382
|
+
finishReasonStr?: string | null;
|
|
8097
8383
|
}
|
|
8098
8384
|
interface CandidateContent {
|
|
8099
8385
|
/**
|
|
@@ -8999,7 +9285,7 @@ interface TextToImageTaskResult {
|
|
|
8999
9285
|
*/
|
|
9000
9286
|
seed?: string | null;
|
|
9001
9287
|
}
|
|
9002
|
-
interface
|
|
9288
|
+
interface V1GenerateImageResponse {
|
|
9003
9289
|
/**
|
|
9004
9290
|
* Array of generated image results, one for each requested sampleCount
|
|
9005
9291
|
* @maxSize 8
|
|
@@ -9106,9 +9392,9 @@ interface CreateImageOpenAiResponse {
|
|
|
9106
9392
|
/** Cost of the request in micro cents. */
|
|
9107
9393
|
microcentsSpent?: string | null;
|
|
9108
9394
|
/** Usage information from the API response */
|
|
9109
|
-
usage?:
|
|
9395
|
+
usage?: V1ImageUsage;
|
|
9110
9396
|
}
|
|
9111
|
-
interface
|
|
9397
|
+
interface V1ImageUsage {
|
|
9112
9398
|
/** Number of tokens in the input */
|
|
9113
9399
|
inputTokens?: number | null;
|
|
9114
9400
|
/** Details about input tokens */
|
|
@@ -9137,7 +9423,7 @@ interface EditImageOpenAiResponse {
|
|
|
9137
9423
|
/** Cost of the request in micro cents. */
|
|
9138
9424
|
microcentsSpent?: string | null;
|
|
9139
9425
|
/** Usage information from the API response */
|
|
9140
|
-
usage?:
|
|
9426
|
+
usage?: V1ImageUsage;
|
|
9141
9427
|
}
|
|
9142
9428
|
interface V1CreateChatCompletionResponse {
|
|
9143
9429
|
/**
|
|
@@ -9578,75 +9864,255 @@ interface ErrorInfo {
|
|
|
9578
9864
|
*/
|
|
9579
9865
|
message?: string | null;
|
|
9580
9866
|
}
|
|
9581
|
-
interface InvokeCustomOpenAiModelResponse {
|
|
9867
|
+
interface InvokeCustomOpenAiModelResponse {
|
|
9868
|
+
/**
|
|
9869
|
+
* A unique identifier for the chat completion.
|
|
9870
|
+
* @maxLength 100
|
|
9871
|
+
*/
|
|
9872
|
+
responseId?: string | null;
|
|
9873
|
+
/**
|
|
9874
|
+
* Description of the response object. Will be equal to "chat.completion" for chat completion.
|
|
9875
|
+
* @maxLength 100
|
|
9876
|
+
*/
|
|
9877
|
+
object?: string | null;
|
|
9878
|
+
/** Timestamp for when the response was created. */
|
|
9879
|
+
created?: number | null;
|
|
9880
|
+
/**
|
|
9881
|
+
* Model that produced the completion.
|
|
9882
|
+
* @maxLength 10000
|
|
9883
|
+
*/
|
|
9884
|
+
modelId?: string;
|
|
9885
|
+
/** A list of chat completion choices. Can be more than one if n is greater than 1. */
|
|
9886
|
+
choices?: InvokeCustomOpenAiModelResponseChoice[];
|
|
9887
|
+
/** TokenUsage object describing the tokens usage per request. */
|
|
9888
|
+
usage?: InvokeCustomOpenAiModelResponseTokenUsage;
|
|
9889
|
+
/** Cost of the request in microcents. */
|
|
9890
|
+
microcentsSpent?: string | null;
|
|
9891
|
+
/**
|
|
9892
|
+
* This fingerprint represents the backend configuration that the model runs with.
|
|
9893
|
+
* Can be used in conjunction with the seed request parameter to understand when backend changes have been made that might impact determinism.
|
|
9894
|
+
* @maxLength 10000
|
|
9895
|
+
*/
|
|
9896
|
+
systemFingerprint?: string | null;
|
|
9897
|
+
}
|
|
9898
|
+
interface InvokeCustomOpenAiModelResponsePromptTokenDetails {
|
|
9899
|
+
/** Audio input tokens present in the prompt. */
|
|
9900
|
+
audioTokens?: number | null;
|
|
9901
|
+
/** Cached tokens present in the prompt. */
|
|
9902
|
+
cachedTokens?: number | null;
|
|
9903
|
+
}
|
|
9904
|
+
interface InvokeCustomOpenAiModelResponseCompletionTokenDetails {
|
|
9905
|
+
/** Reasoning tokens present in the completion. */
|
|
9906
|
+
reasoningTokens?: number | null;
|
|
9907
|
+
/** Audio tokens present in the completion. */
|
|
9908
|
+
audioTokens?: number | null;
|
|
9909
|
+
/** Accepted prediction tokens. */
|
|
9910
|
+
acceptedPredictionTokens?: number | null;
|
|
9911
|
+
/** Rejected prediction tokens. */
|
|
9912
|
+
rejectedPredictionTokens?: number | null;
|
|
9913
|
+
}
|
|
9914
|
+
interface InvokeCustomOpenAiModelResponseChoice {
|
|
9915
|
+
/** Index of this Choice in choices array. */
|
|
9916
|
+
index?: number | null;
|
|
9917
|
+
/** ChatCompletionMessage object that defines the message. */
|
|
9918
|
+
message?: Fireworks_proxyV1ChatCompletionMessage;
|
|
9919
|
+
/**
|
|
9920
|
+
* Reason why the message generation was stopped.
|
|
9921
|
+
* @maxLength 100
|
|
9922
|
+
*/
|
|
9923
|
+
finishReason?: string | null;
|
|
9924
|
+
}
|
|
9925
|
+
interface InvokeCustomOpenAiModelResponseTokenUsage {
|
|
9926
|
+
/** Number of LLM tokens required to encode input. */
|
|
9927
|
+
inputTokens?: number | null;
|
|
9928
|
+
/** Number of LLM tokens required to encode output. */
|
|
9929
|
+
outputTokens?: number | null;
|
|
9930
|
+
/** Total number of LLM tokens used for the request. */
|
|
9931
|
+
totalTokens?: number | null;
|
|
9932
|
+
/** Breakdown of tokens used in the prompt. */
|
|
9933
|
+
promptTokenDetails?: InvokeCustomOpenAiModelResponsePromptTokenDetails;
|
|
9934
|
+
/** Breakdown of tokens used in the completion. */
|
|
9935
|
+
completionTokenDetails?: InvokeCustomOpenAiModelResponseCompletionTokenDetails;
|
|
9936
|
+
}
|
|
9937
|
+
interface CreateContentTaskResponse {
|
|
9938
|
+
task?: CommonContentTaskResponse;
|
|
9939
|
+
}
|
|
9940
|
+
interface CommonContentTaskResponse {
|
|
9941
|
+
/**
|
|
9942
|
+
* The ID of the video generation task.
|
|
9943
|
+
* @format GUID
|
|
9944
|
+
*/
|
|
9945
|
+
_id?: string | null;
|
|
9946
|
+
/**
|
|
9947
|
+
* The name and version of the model used by the task.
|
|
9948
|
+
* @maxLength 255
|
|
9949
|
+
*/
|
|
9950
|
+
model?: string | null;
|
|
9951
|
+
/**
|
|
9952
|
+
* The status of the task.
|
|
9953
|
+
* Valid values: queued, running, cancelled, succeeded, failed, expired.
|
|
9954
|
+
* @maxLength 255
|
|
9955
|
+
*/
|
|
9956
|
+
status?: string | null;
|
|
9957
|
+
/** Error information. Null if the task succeeds. */
|
|
9958
|
+
error?: TaskError;
|
|
9959
|
+
/** The time when the task was created (Unix timestamp in seconds). */
|
|
9960
|
+
createdAt?: string | null;
|
|
9961
|
+
/** The time when the task was last updated (Unix timestamp in seconds). */
|
|
9962
|
+
updatedAt?: string | null;
|
|
9963
|
+
/** The output after the video generation task is completed. */
|
|
9964
|
+
content?: TaskContent;
|
|
9965
|
+
/**
|
|
9966
|
+
* The seed value used for this request.
|
|
9967
|
+
* @min -1
|
|
9968
|
+
* @max 4294967295
|
|
9969
|
+
*/
|
|
9970
|
+
seed?: number | null;
|
|
9971
|
+
/**
|
|
9972
|
+
* The resolution of the generated video.
|
|
9973
|
+
* @maxLength 255
|
|
9974
|
+
*/
|
|
9975
|
+
resolution?: string | null;
|
|
9976
|
+
/**
|
|
9977
|
+
* The width-to-height ratio of the generated video.
|
|
9978
|
+
* @maxLength 255
|
|
9979
|
+
*/
|
|
9980
|
+
ratio?: string | null;
|
|
9981
|
+
/**
|
|
9982
|
+
* The length of the generated video in seconds.
|
|
9983
|
+
* Only one of duration and frames is returned.
|
|
9984
|
+
* @min -1
|
|
9985
|
+
* @max 120
|
|
9986
|
+
*/
|
|
9987
|
+
duration?: number | null;
|
|
9988
|
+
/**
|
|
9989
|
+
* Number of frames for the generated video.
|
|
9990
|
+
* Only one of duration and frames is returned.
|
|
9991
|
+
* @min 29
|
|
9992
|
+
* @max 2890
|
|
9993
|
+
*/
|
|
9994
|
+
frames?: number | null;
|
|
9995
|
+
/** The frame rate of the generated video. */
|
|
9996
|
+
framespersecond?: number | null;
|
|
9997
|
+
/**
|
|
9998
|
+
* Whether the generated video includes audio synchronized with the visuals.
|
|
9999
|
+
* Only supported by Seedance 1.5 pro.
|
|
10000
|
+
*/
|
|
10001
|
+
generateAudio?: boolean | null;
|
|
10002
|
+
/**
|
|
10003
|
+
* Whether the generated video is a Draft video.
|
|
10004
|
+
* Only returned by Seedance 1.5 Pro.
|
|
10005
|
+
*/
|
|
10006
|
+
draft?: boolean | null;
|
|
10007
|
+
/**
|
|
10008
|
+
* Draft video task ID. Returned when generating official video from a draft.
|
|
10009
|
+
* @maxLength 1000
|
|
10010
|
+
*/
|
|
10011
|
+
draftTaskId?: string | null;
|
|
10012
|
+
/**
|
|
10013
|
+
* The service tier actually used to process the task.
|
|
10014
|
+
* @maxLength 255
|
|
10015
|
+
*/
|
|
10016
|
+
serviceTier?: string | null;
|
|
10017
|
+
/**
|
|
10018
|
+
* The expiration threshold for the task, in seconds.
|
|
10019
|
+
* @min 3600
|
|
10020
|
+
* @max 259200
|
|
10021
|
+
*/
|
|
10022
|
+
executionExpiresAfter?: number | null;
|
|
10023
|
+
/** The token usage for the request. */
|
|
10024
|
+
usage?: TaskUsage;
|
|
10025
|
+
/** The cost of the request in microcents. */
|
|
10026
|
+
microcentsSpent?: string | null;
|
|
10027
|
+
}
|
|
10028
|
+
interface TaskError {
|
|
10029
|
+
/**
|
|
10030
|
+
* The error code.
|
|
10031
|
+
* @maxLength 255
|
|
10032
|
+
*/
|
|
10033
|
+
code?: string | null;
|
|
10034
|
+
/**
|
|
10035
|
+
* The error message.
|
|
10036
|
+
* @maxLength 255
|
|
10037
|
+
*/
|
|
10038
|
+
message?: string | null;
|
|
10039
|
+
}
|
|
10040
|
+
interface TaskContent {
|
|
10041
|
+
/**
|
|
10042
|
+
* The URL of the output video. Valid for 24 hours.
|
|
10043
|
+
* @maxLength 255
|
|
10044
|
+
*/
|
|
10045
|
+
videoUrl?: string | null;
|
|
10046
|
+
/**
|
|
10047
|
+
* URL of the last frame of the generated video. Valid for 24 hours.
|
|
10048
|
+
* Returned only if return_last_frame was set to true in the creation request.
|
|
10049
|
+
* @maxLength 255
|
|
10050
|
+
*/
|
|
10051
|
+
lastFrameUrl?: string | null;
|
|
10052
|
+
}
|
|
10053
|
+
interface TaskUsage {
|
|
10054
|
+
/** The number of tokens consumed for the video output. */
|
|
10055
|
+
completionTokens?: number | null;
|
|
10056
|
+
/** Total tokens for this request (input tokens are always 0). */
|
|
10057
|
+
totalTokens?: number | null;
|
|
10058
|
+
}
|
|
10059
|
+
interface GenerateImageResponse {
|
|
9582
10060
|
/**
|
|
9583
|
-
*
|
|
9584
|
-
* @maxLength
|
|
10061
|
+
* The model ID used for generation (model name-version).
|
|
10062
|
+
* @maxLength 255
|
|
9585
10063
|
*/
|
|
9586
|
-
|
|
10064
|
+
model?: string | null;
|
|
10065
|
+
/** Unix timestamp (seconds) of the creation time of the request. */
|
|
10066
|
+
created?: string | null;
|
|
9587
10067
|
/**
|
|
9588
|
-
*
|
|
9589
|
-
*
|
|
10068
|
+
* Generated image data. May contain multiple entries for batch generation.
|
|
10069
|
+
* When batch-generating, if an image fails due to content moderation the remaining
|
|
10070
|
+
* images continue; if it fails due to an internal error (500), subsequent images are skipped.
|
|
9590
10071
|
*/
|
|
9591
|
-
|
|
9592
|
-
/**
|
|
9593
|
-
|
|
10072
|
+
data?: ImageData[];
|
|
10073
|
+
/** Token usage information for this request. */
|
|
10074
|
+
usage?: ImageUsage;
|
|
10075
|
+
/** Request-level error information, if any. */
|
|
10076
|
+
error?: ImageError;
|
|
10077
|
+
/** The cost of the request in microcents (set by proxy, not vendor). */
|
|
10078
|
+
microcentsSpent?: string | null;
|
|
10079
|
+
}
|
|
10080
|
+
interface ImageData {
|
|
9594
10081
|
/**
|
|
9595
|
-
*
|
|
10082
|
+
* URL of the generated image. Returned when response_format = "url".
|
|
10083
|
+
* The link expires 24 hours after generation.
|
|
9596
10084
|
* @maxLength 10000
|
|
9597
10085
|
*/
|
|
9598
|
-
|
|
9599
|
-
/**
|
|
9600
|
-
|
|
9601
|
-
/** TokenUsage object describing the tokens usage per request. */
|
|
9602
|
-
usage?: InvokeCustomOpenAiModelResponseTokenUsage;
|
|
9603
|
-
/** Cost of the request in microcents. */
|
|
9604
|
-
microcentsSpent?: string | null;
|
|
10086
|
+
url?: string | null;
|
|
10087
|
+
/** Base64-encoded image data. Returned when response_format = "b64_json". */
|
|
10088
|
+
b64Json?: string | null;
|
|
9605
10089
|
/**
|
|
9606
|
-
*
|
|
9607
|
-
*
|
|
9608
|
-
* @maxLength 10000
|
|
10090
|
+
* The width and height of the generated image in pixels, format "<width>x<height>" (e.g. "2048x2048").
|
|
10091
|
+
* @maxLength 255
|
|
9609
10092
|
*/
|
|
9610
|
-
|
|
9611
|
-
|
|
9612
|
-
|
|
9613
|
-
/** Audio input tokens present in the prompt. */
|
|
9614
|
-
audioTokens?: number | null;
|
|
9615
|
-
/** Cached tokens present in the prompt. */
|
|
9616
|
-
cachedTokens?: number | null;
|
|
9617
|
-
}
|
|
9618
|
-
interface InvokeCustomOpenAiModelResponseCompletionTokenDetails {
|
|
9619
|
-
/** Reasoning tokens present in the completion. */
|
|
9620
|
-
reasoningTokens?: number | null;
|
|
9621
|
-
/** Audio tokens present in the completion. */
|
|
9622
|
-
audioTokens?: number | null;
|
|
9623
|
-
/** Accepted prediction tokens. */
|
|
9624
|
-
acceptedPredictionTokens?: number | null;
|
|
9625
|
-
/** Rejected prediction tokens. */
|
|
9626
|
-
rejectedPredictionTokens?: number | null;
|
|
10093
|
+
size?: string | null;
|
|
10094
|
+
/** Per-image error information for a failed generation within a batch. */
|
|
10095
|
+
error?: ImageError;
|
|
9627
10096
|
}
|
|
9628
|
-
interface
|
|
9629
|
-
/** Index of this Choice in choices array. */
|
|
9630
|
-
index?: number | null;
|
|
9631
|
-
/** ChatCompletionMessage object that defines the message. */
|
|
9632
|
-
message?: Fireworks_proxyV1ChatCompletionMessage;
|
|
10097
|
+
interface ImageError {
|
|
9633
10098
|
/**
|
|
9634
|
-
*
|
|
9635
|
-
* @maxLength
|
|
10099
|
+
* Error code. See ByteDance error codes documentation.
|
|
10100
|
+
* @maxLength 255
|
|
9636
10101
|
*/
|
|
9637
|
-
|
|
10102
|
+
code?: string | null;
|
|
10103
|
+
/**
|
|
10104
|
+
* Human-readable error message.
|
|
10105
|
+
* @maxLength 1000
|
|
10106
|
+
*/
|
|
10107
|
+
message?: string | null;
|
|
9638
10108
|
}
|
|
9639
|
-
interface
|
|
9640
|
-
/** Number of
|
|
9641
|
-
|
|
9642
|
-
/** Number of
|
|
10109
|
+
interface ImageUsage {
|
|
10110
|
+
/** Number of images successfully generated, excluding failures. Billing is based on this count. */
|
|
10111
|
+
generatedImages?: number | null;
|
|
10112
|
+
/** Number of output tokens consumed. Calculated as sum(image_width * image_height) / 256, rounded. */
|
|
9643
10113
|
outputTokens?: number | null;
|
|
9644
|
-
/** Total
|
|
10114
|
+
/** Total tokens consumed by this request. Same as output_tokens (input tokens are not counted). */
|
|
9645
10115
|
totalTokens?: number | null;
|
|
9646
|
-
/** Breakdown of tokens used in the prompt. */
|
|
9647
|
-
promptTokenDetails?: InvokeCustomOpenAiModelResponsePromptTokenDetails;
|
|
9648
|
-
/** Breakdown of tokens used in the completion. */
|
|
9649
|
-
completionTokenDetails?: InvokeCustomOpenAiModelResponseCompletionTokenDetails;
|
|
9650
10116
|
}
|
|
9651
10117
|
interface ContentGenerationFailedEvent {
|
|
9652
10118
|
/**
|
|
@@ -9693,112 +10159,6 @@ interface FallbackProperties {
|
|
|
9693
10159
|
/** FallbackPromptConfig object that describes optional second Prompt that can be invoked in case main invocation fails. */
|
|
9694
10160
|
fallbackPromptConfig?: FallbackPromptConfig;
|
|
9695
10161
|
}
|
|
9696
|
-
interface DynamicRequestConfig {
|
|
9697
|
-
/**
|
|
9698
|
-
* List of GatewayToolDefinition's, used to overwrite tools in the prompt.
|
|
9699
|
-
* @maxSize 100
|
|
9700
|
-
*/
|
|
9701
|
-
gatewayToolDefinitions?: GatewayToolDefinition[];
|
|
9702
|
-
/**
|
|
9703
|
-
* List of GatewayMessageDefinition's, which will be converted to model-specific format and appended to the messages saved in the prompt.
|
|
9704
|
-
* @maxSize 100
|
|
9705
|
-
*/
|
|
9706
|
-
gatewayMessageDefinitions?: GatewayMessageDefinition[];
|
|
9707
|
-
}
|
|
9708
|
-
interface GatewayToolDefinition extends GatewayToolDefinitionToolOneOf {
|
|
9709
|
-
/** Custom tool */
|
|
9710
|
-
customTool?: GatewayToolDefinitionCustomTool;
|
|
9711
|
-
/** Built-in tool */
|
|
9712
|
-
builtInTool?: BuiltInTool;
|
|
9713
|
-
}
|
|
9714
|
-
/** @oneof */
|
|
9715
|
-
interface GatewayToolDefinitionToolOneOf {
|
|
9716
|
-
/** Custom tool */
|
|
9717
|
-
customTool?: GatewayToolDefinitionCustomTool;
|
|
9718
|
-
/** Built-in tool */
|
|
9719
|
-
builtInTool?: BuiltInTool;
|
|
9720
|
-
}
|
|
9721
|
-
interface GatewayToolDefinitionCustomTool {
|
|
9722
|
-
/**
|
|
9723
|
-
* The name of the tool to be called.
|
|
9724
|
-
* @maxLength 64
|
|
9725
|
-
*/
|
|
9726
|
-
name?: string | null;
|
|
9727
|
-
/**
|
|
9728
|
-
* The description of what the tool does.
|
|
9729
|
-
* @maxLength 100000
|
|
9730
|
-
*/
|
|
9731
|
-
description?: string | null;
|
|
9732
|
-
/** The parameters the tool accepts, described as a JSON Schema object. */
|
|
9733
|
-
parameters?: Record<string, any> | null;
|
|
9734
|
-
}
|
|
9735
|
-
interface BuiltInTool {
|
|
9736
|
-
/**
|
|
9737
|
-
* The name of the tool to be called.
|
|
9738
|
-
* @maxLength 64
|
|
9739
|
-
*/
|
|
9740
|
-
name?: string | null;
|
|
9741
|
-
/** Optional parameters specific to the built-in tool. */
|
|
9742
|
-
parameters?: Record<string, any> | null;
|
|
9743
|
-
}
|
|
9744
|
-
interface GatewayMessageDefinition {
|
|
9745
|
-
/** The role of the message author. */
|
|
9746
|
-
role?: GatewayMessageDefinitionRoleWithLiterals;
|
|
9747
|
-
/**
|
|
9748
|
-
* The content of the message.
|
|
9749
|
-
* @maxSize 4096
|
|
9750
|
-
*/
|
|
9751
|
-
content?: GatewayContentBlock[];
|
|
9752
|
-
}
|
|
9753
|
-
declare enum GatewayMessageDefinitionRole {
|
|
9754
|
-
UNKNOWN = "UNKNOWN",
|
|
9755
|
-
USER = "USER",
|
|
9756
|
-
ASSISTANT = "ASSISTANT",
|
|
9757
|
-
SYSTEM = "SYSTEM",
|
|
9758
|
-
TOOL = "TOOL",
|
|
9759
|
-
DEVELOPER = "DEVELOPER"
|
|
9760
|
-
}
|
|
9761
|
-
/** @enumType */
|
|
9762
|
-
type GatewayMessageDefinitionRoleWithLiterals = GatewayMessageDefinitionRole | 'UNKNOWN' | 'USER' | 'ASSISTANT' | 'SYSTEM' | 'TOOL' | 'DEVELOPER';
|
|
9763
|
-
interface GatewayContentBlock extends GatewayContentBlockTypeOneOf {
|
|
9764
|
-
/** Text content. */
|
|
9765
|
-
text?: TextContent;
|
|
9766
|
-
/** Media content, represented as URL. */
|
|
9767
|
-
media?: MediaContent;
|
|
9768
|
-
/** Tool use content, describes which tool should be used and with which parameters. */
|
|
9769
|
-
toolUse?: ToolUseContent;
|
|
9770
|
-
/** Tool result content, describes the result of tool invocation. */
|
|
9771
|
-
toolResult?: ToolResultContent;
|
|
9772
|
-
/** Represents model's internal thought process. */
|
|
9773
|
-
thinking?: ThinkingTextContent;
|
|
9774
|
-
}
|
|
9775
|
-
/** @oneof */
|
|
9776
|
-
interface GatewayContentBlockTypeOneOf {
|
|
9777
|
-
/** Text content. */
|
|
9778
|
-
text?: TextContent;
|
|
9779
|
-
/** Media content, represented as URL. */
|
|
9780
|
-
media?: MediaContent;
|
|
9781
|
-
/** Tool use content, describes which tool should be used and with which parameters. */
|
|
9782
|
-
toolUse?: ToolUseContent;
|
|
9783
|
-
/** Tool result content, describes the result of tool invocation. */
|
|
9784
|
-
toolResult?: ToolResultContent;
|
|
9785
|
-
/** Represents model's internal thought process. */
|
|
9786
|
-
thinking?: ThinkingTextContent;
|
|
9787
|
-
}
|
|
9788
|
-
interface ToolResultContent {
|
|
9789
|
-
/**
|
|
9790
|
-
* Tool use id
|
|
9791
|
-
* @maxLength 100
|
|
9792
|
-
*/
|
|
9793
|
-
toolUseId?: string | null;
|
|
9794
|
-
/** Tool result is error. */
|
|
9795
|
-
error?: boolean | null;
|
|
9796
|
-
/**
|
|
9797
|
-
* Tool result content.
|
|
9798
|
-
* @maxSize 4096
|
|
9799
|
-
*/
|
|
9800
|
-
content?: GatewayContentBlock[];
|
|
9801
|
-
}
|
|
9802
10162
|
interface GenerateTextByPromptResponse {
|
|
9803
10163
|
/** ModelResponse object that describes the text generation result. */
|
|
9804
10164
|
response?: ModelResponse;
|
|
@@ -9815,8 +10175,6 @@ interface ModelResponse extends ModelResponseResponseOneOf {
|
|
|
9815
10175
|
openAiChatCompletionResponse?: OpenaiproxyV1CreateChatCompletionResponse;
|
|
9816
10176
|
/** Google bison text completion response. */
|
|
9817
10177
|
googleTextBisonResponse?: TextBisonPredictResponse;
|
|
9818
|
-
/** Google bison chat completion response. */
|
|
9819
|
-
googleChatBisonResponse?: ChatBisonPredictResponse;
|
|
9820
10178
|
/** Azure OpenAI chat completion response. */
|
|
9821
10179
|
azureChatCompletionResponse?: CreateChatCompletionResponse;
|
|
9822
10180
|
/** Google Gemini generate content response. */
|
|
@@ -9856,8 +10214,6 @@ interface ModelResponseResponseOneOf {
|
|
|
9856
10214
|
openAiChatCompletionResponse?: OpenaiproxyV1CreateChatCompletionResponse;
|
|
9857
10215
|
/** Google bison text completion response. */
|
|
9858
10216
|
googleTextBisonResponse?: TextBisonPredictResponse;
|
|
9859
|
-
/** Google bison chat completion response. */
|
|
9860
|
-
googleChatBisonResponse?: ChatBisonPredictResponse;
|
|
9861
10217
|
/** Azure OpenAI chat completion response. */
|
|
9862
10218
|
azureChatCompletionResponse?: CreateChatCompletionResponse;
|
|
9863
10219
|
/** Google Gemini generate content response. */
|
|
@@ -9897,6 +10253,8 @@ interface GenerationRequestedEvent {
|
|
|
9897
10253
|
* @format GUID
|
|
9898
10254
|
*/
|
|
9899
10255
|
eventChainId?: string;
|
|
10256
|
+
/** Dynamic request configuration, including dynamic tools and messages. */
|
|
10257
|
+
dynamicRequestConfig?: DynamicRequestConfig;
|
|
9900
10258
|
}
|
|
9901
10259
|
interface TextGenerationSucceededEvent {
|
|
9902
10260
|
/** ModelResponse object that describes the text generation result. */
|
|
@@ -9925,7 +10283,7 @@ interface GeneratedTextChunk extends GeneratedTextChunkModelChunkOneOf {
|
|
|
9925
10283
|
/** Azure OpenAI chat completion chunk. */
|
|
9926
10284
|
azureChatCompletionChunk?: ChatCompletionChunk;
|
|
9927
10285
|
/** OpenAI chat completion chunk. */
|
|
9928
|
-
openaiChatCompletionChunk?:
|
|
10286
|
+
openaiChatCompletionChunk?: OpenaiproxyV1ChatCompletionChunk;
|
|
9929
10287
|
/** Anthropic (via Google proxy) chat completion chunk. */
|
|
9930
10288
|
googleAnthropicStreamChunk?: GoogleproxyV1AnthropicStreamChunk;
|
|
9931
10289
|
/** Google Gemini GenerateContentResponse chunk. */
|
|
@@ -9934,6 +10292,8 @@ interface GeneratedTextChunk extends GeneratedTextChunkModelChunkOneOf {
|
|
|
9934
10292
|
amazonAnthropicStreamChunk?: AnthropicStreamChunk;
|
|
9935
10293
|
/** Native Anthropic API proxy stream chunk. */
|
|
9936
10294
|
anthropicStreamChunk?: V1AnthropicStreamChunk;
|
|
10295
|
+
/** Fireworks chat completion chunk. */
|
|
10296
|
+
fireworksChatCompletionChunk?: V1ChatCompletionChunk;
|
|
9937
10297
|
/**
|
|
9938
10298
|
* Extracted text content from the chunk.
|
|
9939
10299
|
* @maxLength 100
|
|
@@ -9950,7 +10310,7 @@ interface GeneratedTextChunkModelChunkOneOf {
|
|
|
9950
10310
|
/** Azure OpenAI chat completion chunk. */
|
|
9951
10311
|
azureChatCompletionChunk?: ChatCompletionChunk;
|
|
9952
10312
|
/** OpenAI chat completion chunk. */
|
|
9953
|
-
openaiChatCompletionChunk?:
|
|
10313
|
+
openaiChatCompletionChunk?: OpenaiproxyV1ChatCompletionChunk;
|
|
9954
10314
|
/** Anthropic (via Google proxy) chat completion chunk. */
|
|
9955
10315
|
googleAnthropicStreamChunk?: GoogleproxyV1AnthropicStreamChunk;
|
|
9956
10316
|
/** Google Gemini GenerateContentResponse chunk. */
|
|
@@ -9959,6 +10319,8 @@ interface GeneratedTextChunkModelChunkOneOf {
|
|
|
9959
10319
|
amazonAnthropicStreamChunk?: AnthropicStreamChunk;
|
|
9960
10320
|
/** Native Anthropic API proxy stream chunk. */
|
|
9961
10321
|
anthropicStreamChunk?: V1AnthropicStreamChunk;
|
|
10322
|
+
/** Fireworks chat completion chunk. */
|
|
10323
|
+
fireworksChatCompletionChunk?: V1ChatCompletionChunk;
|
|
9962
10324
|
}
|
|
9963
10325
|
interface ChatCompletionChunk {
|
|
9964
10326
|
/**
|
|
@@ -10026,7 +10388,7 @@ interface ChunkChoice {
|
|
|
10026
10388
|
/** The index of the choice in the list of choices. */
|
|
10027
10389
|
index?: number | null;
|
|
10028
10390
|
}
|
|
10029
|
-
interface
|
|
10391
|
+
interface OpenaiproxyV1ChatCompletionChunk {
|
|
10030
10392
|
/**
|
|
10031
10393
|
* A unique identifier for the chat completion. Each chunk has the same ID.
|
|
10032
10394
|
* @maxLength 100
|
|
@@ -10036,7 +10398,7 @@ interface V1ChatCompletionChunk {
|
|
|
10036
10398
|
* A list of chat completion choices. Can contain more than one elements if n is greater than 1.
|
|
10037
10399
|
* Can also be empty for the last chunk if you set stream_options: {"include_usage": true}.
|
|
10038
10400
|
*/
|
|
10039
|
-
choices?:
|
|
10401
|
+
choices?: V1ChatCompletionChunkChunkChoice[];
|
|
10040
10402
|
/**
|
|
10041
10403
|
* The Unix timestamp (in seconds) of when the chat completion was created.
|
|
10042
10404
|
* Each chunk has the same timestamp.
|
|
@@ -10063,7 +10425,7 @@ interface V1ChatCompletionChunk {
|
|
|
10063
10425
|
/** Cost of the entire request in micro cents. Calculated manually and is present only in the last chunk. */
|
|
10064
10426
|
microcentsSpent?: string | null;
|
|
10065
10427
|
}
|
|
10066
|
-
interface
|
|
10428
|
+
interface ChatCompletionChunkChunkChoiceChunkDelta {
|
|
10067
10429
|
/**
|
|
10068
10430
|
* The contents of the chunk message.
|
|
10069
10431
|
* @maxLength 1000
|
|
@@ -10077,9 +10439,9 @@ interface ChunkChoiceChunkDelta {
|
|
|
10077
10439
|
*/
|
|
10078
10440
|
toolCalls?: V1ChatCompletionMessageToolCall[];
|
|
10079
10441
|
}
|
|
10080
|
-
interface
|
|
10442
|
+
interface V1ChatCompletionChunkChunkChoice {
|
|
10081
10443
|
/** A chat completion delta generated by streamed model responses */
|
|
10082
|
-
delta?:
|
|
10444
|
+
delta?: ChatCompletionChunkChunkChoiceChunkDelta;
|
|
10083
10445
|
/**
|
|
10084
10446
|
* The reason the model stopped generating tokens. This will be
|
|
10085
10447
|
* "stop" if the model hit a natural stop point or a provided stop sequence,
|
|
@@ -10364,6 +10726,72 @@ interface AnthropicStreamChunkMessageDelta {
|
|
|
10364
10726
|
/** Cost of the request so far, in microcents. */
|
|
10365
10727
|
microcentsSpent?: string | null;
|
|
10366
10728
|
}
|
|
10729
|
+
interface V1ChatCompletionChunk {
|
|
10730
|
+
/**
|
|
10731
|
+
* A unique identifier for the chat completion. Each chunk has the same ID.
|
|
10732
|
+
* @maxLength 100
|
|
10733
|
+
*/
|
|
10734
|
+
responseId?: string | null;
|
|
10735
|
+
/**
|
|
10736
|
+
* A list of chat completion choices. Can contain more than one elements if n is greater than 1.
|
|
10737
|
+
* Can also be empty for the last chunk if you set stream_options: {"include_usage": true}.
|
|
10738
|
+
*/
|
|
10739
|
+
choices?: ChatCompletionChunkChunkChoice[];
|
|
10740
|
+
/**
|
|
10741
|
+
* The Unix timestamp (in seconds) of when the chat completion was created.
|
|
10742
|
+
* Each chunk has the same timestamp.
|
|
10743
|
+
*/
|
|
10744
|
+
created?: number | null;
|
|
10745
|
+
/** Model that produced the completion. */
|
|
10746
|
+
modelId?: string;
|
|
10747
|
+
/**
|
|
10748
|
+
* This fingerprint represents the backend configuration that the model runs with. Can be used in conjunction with the
|
|
10749
|
+
* seed request parameter to understand when backend changes have been made that might impact determinism.
|
|
10750
|
+
* @maxLength 10000
|
|
10751
|
+
*/
|
|
10752
|
+
systemFingerprint?: string | null;
|
|
10753
|
+
/**
|
|
10754
|
+
* The object type, which is always chat.completion.chunk.
|
|
10755
|
+
* @maxLength 100
|
|
10756
|
+
*/
|
|
10757
|
+
object?: string | null;
|
|
10758
|
+
/**
|
|
10759
|
+
* An optional field that will only be present when you set stream_options: {"include_usage": true} in your request.
|
|
10760
|
+
* When present, it contains a null value except for the last chunk which contains the token usage statistics for the entire request.
|
|
10761
|
+
*/
|
|
10762
|
+
usage?: InvokeCustomOpenAiModelResponseTokenUsage;
|
|
10763
|
+
/** Cost of the entire request in micro cents. Calculated manually and is present only in the last chunk. */
|
|
10764
|
+
microcentsSpent?: string | null;
|
|
10765
|
+
}
|
|
10766
|
+
interface ChunkChoiceChunkDelta {
|
|
10767
|
+
/**
|
|
10768
|
+
* The contents of the chunk message.
|
|
10769
|
+
* @maxLength 1000
|
|
10770
|
+
*/
|
|
10771
|
+
content?: string | null;
|
|
10772
|
+
/** The role of the author of this message. */
|
|
10773
|
+
role?: Fireworks_proxyV1ChatCompletionMessageMessageRoleWithLiterals;
|
|
10774
|
+
/**
|
|
10775
|
+
* Tool call requested by the model. Function arguments can be partial jsons and have to be assembled manually.
|
|
10776
|
+
* @maxSize 100
|
|
10777
|
+
*/
|
|
10778
|
+
toolCalls?: ChatCompletionMessageToolCall[];
|
|
10779
|
+
}
|
|
10780
|
+
interface ChatCompletionChunkChunkChoice {
|
|
10781
|
+
/** A chat completion delta generated by streamed model responses */
|
|
10782
|
+
delta?: ChunkChoiceChunkDelta;
|
|
10783
|
+
/**
|
|
10784
|
+
* The reason the model stopped generating tokens. This will be
|
|
10785
|
+
* "stop" if the model hit a natural stop point or a provided stop sequence,
|
|
10786
|
+
* "length" if the maximum number of tokens specified in the request was reached,
|
|
10787
|
+
* "content_filter" if content was omitted due to a flag from our content filters,
|
|
10788
|
+
* "tool_calls" if the model called a tool
|
|
10789
|
+
* @maxLength 100
|
|
10790
|
+
*/
|
|
10791
|
+
finishReason?: string | null;
|
|
10792
|
+
/** The index of the choice in the list of choices. */
|
|
10793
|
+
index?: number | null;
|
|
10794
|
+
}
|
|
10367
10795
|
interface GenerateTextByPromptObjectRequest {
|
|
10368
10796
|
/** Prompt object that describes the text generation request. */
|
|
10369
10797
|
prompt?: Prompt;
|
|
@@ -10929,7 +11357,7 @@ interface ImageModelResponse extends ImageModelResponseResponseOneOf {
|
|
|
10929
11357
|
/** Runware AI - Flux TextToImage response. */
|
|
10930
11358
|
runwareTextToImageResponse?: TextToImageResponse;
|
|
10931
11359
|
/** Google AI - Generate Image with Imagen Model response. */
|
|
10932
|
-
googleGenerateImageResponse?:
|
|
11360
|
+
googleGenerateImageResponse?: V1GenerateImageResponse;
|
|
10933
11361
|
/** ML generate image response. */
|
|
10934
11362
|
mlPlatformGenerateImageResponse?: GenerateImageMlPlatformResponse;
|
|
10935
11363
|
/** OpenAI image creation response. */
|
|
@@ -10958,7 +11386,7 @@ interface ImageModelResponseResponseOneOf {
|
|
|
10958
11386
|
/** Runware AI - Flux TextToImage response. */
|
|
10959
11387
|
runwareTextToImageResponse?: TextToImageResponse;
|
|
10960
11388
|
/** Google AI - Generate Image with Imagen Model response. */
|
|
10961
|
-
googleGenerateImageResponse?:
|
|
11389
|
+
googleGenerateImageResponse?: V1GenerateImageResponse;
|
|
10962
11390
|
/** ML generate image response. */
|
|
10963
11391
|
mlPlatformGenerateImageResponse?: GenerateImageMlPlatformResponse;
|
|
10964
11392
|
/** OpenAI image creation response. */
|
|
@@ -10980,6 +11408,8 @@ interface ImageGenerationRequestedEvent {
|
|
|
10980
11408
|
* @format GUID
|
|
10981
11409
|
*/
|
|
10982
11410
|
eventChainId?: string;
|
|
11411
|
+
/** Dynamic request configuration, including dynamic tools and messages. */
|
|
11412
|
+
dynamicRequestConfig?: DynamicRequestConfig;
|
|
10983
11413
|
}
|
|
10984
11414
|
interface ImageGenerationSucceededEvent {
|
|
10985
11415
|
/** ModelResponse object that describes the image generation result. */
|
|
@@ -12576,6 +13006,8 @@ interface PollImageGenerationResultRequest extends PollImageGenerationResultRequ
|
|
|
12576
13006
|
runwareGetTaskResultRequest?: GetTaskResultRequest;
|
|
12577
13007
|
/** OpenAI getVideoResult request */
|
|
12578
13008
|
openAiGetVideoResultRequest?: GetVideoResultRequest;
|
|
13009
|
+
/** Bytedance getContentTask request */
|
|
13010
|
+
bytedanceGetContentTaskRequest?: GetContentTaskRequest;
|
|
12579
13011
|
/** Contains additional information for the request. */
|
|
12580
13012
|
userRequestInfo?: UserRequestInfo;
|
|
12581
13013
|
}
|
|
@@ -12589,6 +13021,8 @@ interface PollImageGenerationResultRequestRequestOneOf {
|
|
|
12589
13021
|
runwareGetTaskResultRequest?: GetTaskResultRequest;
|
|
12590
13022
|
/** OpenAI getVideoResult request */
|
|
12591
13023
|
openAiGetVideoResultRequest?: GetVideoResultRequest;
|
|
13024
|
+
/** Bytedance getContentTask request */
|
|
13025
|
+
bytedanceGetContentTaskRequest?: GetContentTaskRequest;
|
|
12592
13026
|
}
|
|
12593
13027
|
interface V1GetResultRequest {
|
|
12594
13028
|
/**
|
|
@@ -12618,6 +13052,13 @@ interface GetVideoResultRequest {
|
|
|
12618
13052
|
*/
|
|
12619
13053
|
_id?: string;
|
|
12620
13054
|
}
|
|
13055
|
+
interface GetContentTaskRequest {
|
|
13056
|
+
/**
|
|
13057
|
+
* The ID of the video generation task to query.
|
|
13058
|
+
* @maxLength 255
|
|
13059
|
+
*/
|
|
13060
|
+
taskId?: string;
|
|
13061
|
+
}
|
|
12621
13062
|
interface PollImageGenerationResultResponse extends PollImageGenerationResultResponseResponseOneOf {
|
|
12622
13063
|
/** replicate proxy getResult response */
|
|
12623
13064
|
replicateGetResultResponse?: V1GetResultResponse;
|
|
@@ -12627,6 +13068,8 @@ interface PollImageGenerationResultResponse extends PollImageGenerationResultRes
|
|
|
12627
13068
|
runwareGetTaskResultResponse?: GetTaskResultResponse;
|
|
12628
13069
|
/** OpenAI getVideoResult response */
|
|
12629
13070
|
openAiGetVideoResultResponse?: GetVideoResultResponse;
|
|
13071
|
+
/** Bytedance getContentTask response */
|
|
13072
|
+
bytedanceGetContentTaskResponse?: GetContentTaskResponse;
|
|
12630
13073
|
}
|
|
12631
13074
|
/** @oneof */
|
|
12632
13075
|
interface PollImageGenerationResultResponseResponseOneOf {
|
|
@@ -12638,6 +13081,8 @@ interface PollImageGenerationResultResponseResponseOneOf {
|
|
|
12638
13081
|
runwareGetTaskResultResponse?: GetTaskResultResponse;
|
|
12639
13082
|
/** OpenAI getVideoResult response */
|
|
12640
13083
|
openAiGetVideoResultResponse?: GetVideoResultResponse;
|
|
13084
|
+
/** Bytedance getContentTask response */
|
|
13085
|
+
bytedanceGetContentTaskResponse?: GetContentTaskResponse;
|
|
12641
13086
|
}
|
|
12642
13087
|
interface V1GetResultResponse {
|
|
12643
13088
|
/**
|
|
@@ -12700,6 +13145,9 @@ interface GetTaskResultResponseResponseOneOf {
|
|
|
12700
13145
|
interface GetVideoResultResponse {
|
|
12701
13146
|
videoJob?: VideoJob;
|
|
12702
13147
|
}
|
|
13148
|
+
interface GetContentTaskResponse {
|
|
13149
|
+
task?: CommonContentTaskResponse;
|
|
13150
|
+
}
|
|
12703
13151
|
interface DomainEvent extends DomainEventBodyOneOf {
|
|
12704
13152
|
createdEvent?: EntityCreatedEvent;
|
|
12705
13153
|
updatedEvent?: EntityUpdatedEvent;
|
|
@@ -12867,7 +13315,7 @@ type GoogleProtoDuration = any;
|
|
|
12867
13315
|
* @replacedBy GenerateContentByPrompt
|
|
12868
13316
|
* @targetRemovalDate 2026-03-31
|
|
12869
13317
|
*/
|
|
12870
|
-
declare function generateTextByPrompt(promptId: string, options?: GenerateTextByPromptOptions): Promise<NonNullablePaths<GenerateTextByPromptResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.googleChatBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.generatedTexts` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.googleChatBisonRequest.instances` | `materializedPrompt.googleChatBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
13318
|
+
declare function generateTextByPrompt(promptId: string, options?: GenerateTextByPromptOptions): Promise<NonNullablePaths<GenerateTextByPromptResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.generatedTexts` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.bytedanceCreateContentTaskRequest.model` | `materializedPrompt.bytedanceCreateContentTaskRequest.content` | `materializedPrompt.bytedanceGenerateImageRequest.model` | `materializedPrompt.bytedanceGenerateImageRequest.prompt` | `materializedPrompt.bytedanceGenerateImageRequest.image` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
12871
13319
|
interface GenerateTextByPromptOptions {
|
|
12872
13320
|
/** Key-value pairs that will be used to substitute templated parameters in the prompt. */
|
|
12873
13321
|
params?: Record<string, string>;
|
|
@@ -12897,7 +13345,7 @@ interface GenerateTextByPromptOptions {
|
|
|
12897
13345
|
* @permissionId DATA_SCIENCE.WIX_AI_GATEWAY.GENERATE_TEXT
|
|
12898
13346
|
* @fqn wix.ds.wix_ai_gateway.v1.WixAiGateway.GenerateTextByPromptStreamed
|
|
12899
13347
|
*/
|
|
12900
|
-
declare function generateTextByPromptStreamed(promptId: string, options?: GenerateTextByPromptStreamedOptions): Promise<NonNullablePaths<GeneratedTextChunk, `azureChatCompletionChunk.choices` | `azureChatCompletionChunk.choices.${number}.delta.role` | `azureChatCompletionChunk.model` | `openaiChatCompletionChunk.choices` | `openaiChatCompletionChunk.choices.${number}.delta.role` | `openaiChatCompletionChunk.model` | `googleAnthropicStreamChunk.toolUse.cacheControl.type` | `googleAnthropicStreamChunk.contentBlockDelta.text` | `googleAnthropicStreamChunk.contentBlockDelta.partialJson` | `googleAnthropicStreamChunk.contentBlockDelta.thinking` | `googleAnthropicStreamChunk.contentBlockDelta.signature` | `googleAnthropicStreamChunk.messageDelta.usage.inputTokens` | `googleAnthropicStreamChunk.messageDelta.usage.outputTokens` | `googleAnthropicStreamChunk.redactedThinking.data` | `googleAnthropicStreamChunk.responseId` | `googleAnthropicStreamChunk.model` | `googleGeminiStreamChunk.candidates` | `googleGeminiStreamChunk.candidates.${number}.finishReason` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails.${number}.modality` | `googleGeminiStreamChunk.usageMetadata.candidatesTokensDetails` | `googleGeminiStreamChunk.usageMetadata.cacheTokensDetails` | `amazonAnthropicStreamChunk.toolUse.cacheControl.type` | `amazonAnthropicStreamChunk.contentBlockDelta.text` | `amazonAnthropicStreamChunk.contentBlockDelta.partialJson` | `amazonAnthropicStreamChunk.contentBlockDelta.thinking` | `amazonAnthropicStreamChunk.contentBlockDelta.signature` | `amazonAnthropicStreamChunk.messageDelta.usage.inputTokens` | `amazonAnthropicStreamChunk.messageDelta.usage.outputTokens` | `amazonAnthropicStreamChunk.redactedThinking.data` | `amazonAnthropicStreamChunk.responseId` | `amazonAnthropicStreamChunk.model` | `anthropicStreamChunk.toolUse.cacheControl.type` | `anthropicStreamChunk.webSearchToolResult.contentResults.items` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.textContent.text` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.image.mediaType` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.signature` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.thinking` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.redactedThinking.data` | `anthropicStreamChunk.webFetchToolResult.contentError.type` | `anthropicStreamChunk.webFetchToolResult.type` | `anthropicStreamChunk.contentBlockDelta.text` | `anthropicStreamChunk.contentBlockDelta.partialJson` | `anthropicStreamChunk.contentBlockDelta.thinking` | `anthropicStreamChunk.contentBlockDelta.signature` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral1hInputTokens` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral5mInputTokens` | `anthropicStreamChunk.messageDelta.usage.inputTokens` | `anthropicStreamChunk.messageDelta.usage.outputTokens` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webSearchRequests` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webFetchRequests` | `anthropicStreamChunk.responseId` | `anthropicStreamChunk.model` | `predictionId`, 10>>;
|
|
13348
|
+
declare function generateTextByPromptStreamed(promptId: string, options?: GenerateTextByPromptStreamedOptions): Promise<NonNullablePaths<GeneratedTextChunk, `azureChatCompletionChunk.choices` | `azureChatCompletionChunk.choices.${number}.delta.role` | `azureChatCompletionChunk.model` | `openaiChatCompletionChunk.choices` | `openaiChatCompletionChunk.choices.${number}.delta.role` | `openaiChatCompletionChunk.model` | `googleAnthropicStreamChunk.toolUse.cacheControl.type` | `googleAnthropicStreamChunk.contentBlockDelta.text` | `googleAnthropicStreamChunk.contentBlockDelta.partialJson` | `googleAnthropicStreamChunk.contentBlockDelta.thinking` | `googleAnthropicStreamChunk.contentBlockDelta.signature` | `googleAnthropicStreamChunk.messageDelta.usage.inputTokens` | `googleAnthropicStreamChunk.messageDelta.usage.outputTokens` | `googleAnthropicStreamChunk.redactedThinking.data` | `googleAnthropicStreamChunk.responseId` | `googleAnthropicStreamChunk.model` | `googleGeminiStreamChunk.candidates` | `googleGeminiStreamChunk.candidates.${number}.finishReason` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails.${number}.modality` | `googleGeminiStreamChunk.usageMetadata.candidatesTokensDetails` | `googleGeminiStreamChunk.usageMetadata.cacheTokensDetails` | `amazonAnthropicStreamChunk.toolUse.cacheControl.type` | `amazonAnthropicStreamChunk.contentBlockDelta.text` | `amazonAnthropicStreamChunk.contentBlockDelta.partialJson` | `amazonAnthropicStreamChunk.contentBlockDelta.thinking` | `amazonAnthropicStreamChunk.contentBlockDelta.signature` | `amazonAnthropicStreamChunk.messageDelta.usage.inputTokens` | `amazonAnthropicStreamChunk.messageDelta.usage.outputTokens` | `amazonAnthropicStreamChunk.redactedThinking.data` | `amazonAnthropicStreamChunk.responseId` | `amazonAnthropicStreamChunk.model` | `anthropicStreamChunk.toolUse.cacheControl.type` | `anthropicStreamChunk.webSearchToolResult.contentResults.items` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.textContent.text` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.image.mediaType` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.signature` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.thinking` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.redactedThinking.data` | `anthropicStreamChunk.webFetchToolResult.contentError.type` | `anthropicStreamChunk.webFetchToolResult.type` | `anthropicStreamChunk.contentBlockDelta.text` | `anthropicStreamChunk.contentBlockDelta.partialJson` | `anthropicStreamChunk.contentBlockDelta.thinking` | `anthropicStreamChunk.contentBlockDelta.signature` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral1hInputTokens` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral5mInputTokens` | `anthropicStreamChunk.messageDelta.usage.inputTokens` | `anthropicStreamChunk.messageDelta.usage.outputTokens` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webSearchRequests` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webFetchRequests` | `anthropicStreamChunk.responseId` | `anthropicStreamChunk.model` | `fireworksChatCompletionChunk.choices` | `fireworksChatCompletionChunk.choices.${number}.delta.role` | `fireworksChatCompletionChunk.modelId` | `predictionId`, 10>>;
|
|
12901
13349
|
interface GenerateTextByPromptStreamedOptions {
|
|
12902
13350
|
/** Key-value pairs that will be used to substitute templated parameters in the prompt. */
|
|
12903
13351
|
params?: Record<string, string>;
|
|
@@ -12927,7 +13375,7 @@ interface GenerateTextByPromptStreamedOptions {
|
|
|
12927
13375
|
* @replacedBy GenerateContentByPromptObject
|
|
12928
13376
|
* @targetRemovalDate 2026-03-31
|
|
12929
13377
|
*/
|
|
12930
|
-
declare function generateTextByPromptObject(options?: GenerateTextByPromptObjectOptions): Promise<NonNullablePaths<GenerateTextByPromptObjectResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.googleChatBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.generatedTexts` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.googleChatBisonRequest.instances` | `materializedPrompt.googleChatBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
13378
|
+
declare function generateTextByPromptObject(options?: GenerateTextByPromptObjectOptions): Promise<NonNullablePaths<GenerateTextByPromptObjectResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.generatedTexts` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.bytedanceCreateContentTaskRequest.model` | `materializedPrompt.bytedanceCreateContentTaskRequest.content` | `materializedPrompt.bytedanceGenerateImageRequest.model` | `materializedPrompt.bytedanceGenerateImageRequest.prompt` | `materializedPrompt.bytedanceGenerateImageRequest.image` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
12931
13379
|
interface GenerateTextByPromptObjectOptions {
|
|
12932
13380
|
/** Prompt object that describes the text generation request. */
|
|
12933
13381
|
prompt?: Prompt;
|
|
@@ -12957,7 +13405,7 @@ interface GenerateTextByPromptObjectOptions {
|
|
|
12957
13405
|
* @permissionId DATA_SCIENCE.WIX_AI_GATEWAY.GENERATE_TEXT_BY_PROMPT_OBJECT
|
|
12958
13406
|
* @fqn wix.ds.wix_ai_gateway.v1.WixAiGateway.GenerateTextByPromptObjectStreamed
|
|
12959
13407
|
*/
|
|
12960
|
-
declare function generateTextByPromptObjectStreamed(options?: GenerateTextByPromptObjectStreamedOptions): Promise<NonNullablePaths<GeneratedTextChunk, `azureChatCompletionChunk.choices` | `azureChatCompletionChunk.choices.${number}.delta.role` | `azureChatCompletionChunk.model` | `openaiChatCompletionChunk.choices` | `openaiChatCompletionChunk.choices.${number}.delta.role` | `openaiChatCompletionChunk.model` | `googleAnthropicStreamChunk.toolUse.cacheControl.type` | `googleAnthropicStreamChunk.contentBlockDelta.text` | `googleAnthropicStreamChunk.contentBlockDelta.partialJson` | `googleAnthropicStreamChunk.contentBlockDelta.thinking` | `googleAnthropicStreamChunk.contentBlockDelta.signature` | `googleAnthropicStreamChunk.messageDelta.usage.inputTokens` | `googleAnthropicStreamChunk.messageDelta.usage.outputTokens` | `googleAnthropicStreamChunk.redactedThinking.data` | `googleAnthropicStreamChunk.responseId` | `googleAnthropicStreamChunk.model` | `googleGeminiStreamChunk.candidates` | `googleGeminiStreamChunk.candidates.${number}.finishReason` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails.${number}.modality` | `googleGeminiStreamChunk.usageMetadata.candidatesTokensDetails` | `googleGeminiStreamChunk.usageMetadata.cacheTokensDetails` | `amazonAnthropicStreamChunk.toolUse.cacheControl.type` | `amazonAnthropicStreamChunk.contentBlockDelta.text` | `amazonAnthropicStreamChunk.contentBlockDelta.partialJson` | `amazonAnthropicStreamChunk.contentBlockDelta.thinking` | `amazonAnthropicStreamChunk.contentBlockDelta.signature` | `amazonAnthropicStreamChunk.messageDelta.usage.inputTokens` | `amazonAnthropicStreamChunk.messageDelta.usage.outputTokens` | `amazonAnthropicStreamChunk.redactedThinking.data` | `amazonAnthropicStreamChunk.responseId` | `amazonAnthropicStreamChunk.model` | `anthropicStreamChunk.toolUse.cacheControl.type` | `anthropicStreamChunk.webSearchToolResult.contentResults.items` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.textContent.text` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.image.mediaType` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.signature` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.thinking` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.redactedThinking.data` | `anthropicStreamChunk.webFetchToolResult.contentError.type` | `anthropicStreamChunk.webFetchToolResult.type` | `anthropicStreamChunk.contentBlockDelta.text` | `anthropicStreamChunk.contentBlockDelta.partialJson` | `anthropicStreamChunk.contentBlockDelta.thinking` | `anthropicStreamChunk.contentBlockDelta.signature` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral1hInputTokens` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral5mInputTokens` | `anthropicStreamChunk.messageDelta.usage.inputTokens` | `anthropicStreamChunk.messageDelta.usage.outputTokens` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webSearchRequests` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webFetchRequests` | `anthropicStreamChunk.responseId` | `anthropicStreamChunk.model` | `predictionId`, 10>>;
|
|
13408
|
+
declare function generateTextByPromptObjectStreamed(options?: GenerateTextByPromptObjectStreamedOptions): Promise<NonNullablePaths<GeneratedTextChunk, `azureChatCompletionChunk.choices` | `azureChatCompletionChunk.choices.${number}.delta.role` | `azureChatCompletionChunk.model` | `openaiChatCompletionChunk.choices` | `openaiChatCompletionChunk.choices.${number}.delta.role` | `openaiChatCompletionChunk.model` | `googleAnthropicStreamChunk.toolUse.cacheControl.type` | `googleAnthropicStreamChunk.contentBlockDelta.text` | `googleAnthropicStreamChunk.contentBlockDelta.partialJson` | `googleAnthropicStreamChunk.contentBlockDelta.thinking` | `googleAnthropicStreamChunk.contentBlockDelta.signature` | `googleAnthropicStreamChunk.messageDelta.usage.inputTokens` | `googleAnthropicStreamChunk.messageDelta.usage.outputTokens` | `googleAnthropicStreamChunk.redactedThinking.data` | `googleAnthropicStreamChunk.responseId` | `googleAnthropicStreamChunk.model` | `googleGeminiStreamChunk.candidates` | `googleGeminiStreamChunk.candidates.${number}.finishReason` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails.${number}.modality` | `googleGeminiStreamChunk.usageMetadata.candidatesTokensDetails` | `googleGeminiStreamChunk.usageMetadata.cacheTokensDetails` | `amazonAnthropicStreamChunk.toolUse.cacheControl.type` | `amazonAnthropicStreamChunk.contentBlockDelta.text` | `amazonAnthropicStreamChunk.contentBlockDelta.partialJson` | `amazonAnthropicStreamChunk.contentBlockDelta.thinking` | `amazonAnthropicStreamChunk.contentBlockDelta.signature` | `amazonAnthropicStreamChunk.messageDelta.usage.inputTokens` | `amazonAnthropicStreamChunk.messageDelta.usage.outputTokens` | `amazonAnthropicStreamChunk.redactedThinking.data` | `amazonAnthropicStreamChunk.responseId` | `amazonAnthropicStreamChunk.model` | `anthropicStreamChunk.toolUse.cacheControl.type` | `anthropicStreamChunk.webSearchToolResult.contentResults.items` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.textContent.text` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.image.mediaType` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.signature` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.thinking` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.redactedThinking.data` | `anthropicStreamChunk.webFetchToolResult.contentError.type` | `anthropicStreamChunk.webFetchToolResult.type` | `anthropicStreamChunk.contentBlockDelta.text` | `anthropicStreamChunk.contentBlockDelta.partialJson` | `anthropicStreamChunk.contentBlockDelta.thinking` | `anthropicStreamChunk.contentBlockDelta.signature` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral1hInputTokens` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral5mInputTokens` | `anthropicStreamChunk.messageDelta.usage.inputTokens` | `anthropicStreamChunk.messageDelta.usage.outputTokens` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webSearchRequests` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webFetchRequests` | `anthropicStreamChunk.responseId` | `anthropicStreamChunk.model` | `fireworksChatCompletionChunk.choices` | `fireworksChatCompletionChunk.choices.${number}.delta.role` | `fireworksChatCompletionChunk.modelId` | `predictionId`, 10>>;
|
|
12961
13409
|
interface GenerateTextByPromptObjectStreamedOptions {
|
|
12962
13410
|
/** Prompt object that describes the text generation request. */
|
|
12963
13411
|
prompt?: Prompt;
|
|
@@ -13019,7 +13467,7 @@ interface GenerateEmbeddingOptionsEmbeddingRequestOneOf {
|
|
|
13019
13467
|
* @replacedBy GenerateContentByProject
|
|
13020
13468
|
* @targetRemovalDate 2026-03-31
|
|
13021
13469
|
*/
|
|
13022
|
-
declare function generateTextByProject(projectId: string, options?: GenerateTextByProjectOptions): Promise<NonNullablePaths<GenerateTextByProjectResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.googleChatBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.generatedTexts` | `promptId` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.googleChatBisonRequest.instances` | `materializedPrompt.googleChatBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
13470
|
+
declare function generateTextByProject(projectId: string, options?: GenerateTextByProjectOptions): Promise<NonNullablePaths<GenerateTextByProjectResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.generatedTexts` | `promptId` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.bytedanceCreateContentTaskRequest.model` | `materializedPrompt.bytedanceCreateContentTaskRequest.content` | `materializedPrompt.bytedanceGenerateImageRequest.model` | `materializedPrompt.bytedanceGenerateImageRequest.prompt` | `materializedPrompt.bytedanceGenerateImageRequest.image` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
13023
13471
|
interface GenerateTextByProjectOptions {
|
|
13024
13472
|
/** Key-value pairs that will be used to substitute templated parameters in the prompt. */
|
|
13025
13473
|
params?: Record<string, string>;
|
|
@@ -13050,7 +13498,7 @@ interface GenerateTextByProjectOptions {
|
|
|
13050
13498
|
* @permissionId DATA_SCIENCE.WIX_AI_GATEWAY.GENERATE_TEXT
|
|
13051
13499
|
* @fqn wix.ds.wix_ai_gateway.v1.WixAiGateway.GenerateTextByProjectStreamed
|
|
13052
13500
|
*/
|
|
13053
|
-
declare function generateTextByProjectStreamed(projectId: string, options?: GenerateTextByProjectStreamedOptions): Promise<NonNullablePaths<GeneratedTextChunk, `azureChatCompletionChunk.choices` | `azureChatCompletionChunk.choices.${number}.delta.role` | `azureChatCompletionChunk.model` | `openaiChatCompletionChunk.choices` | `openaiChatCompletionChunk.choices.${number}.delta.role` | `openaiChatCompletionChunk.model` | `googleAnthropicStreamChunk.toolUse.cacheControl.type` | `googleAnthropicStreamChunk.contentBlockDelta.text` | `googleAnthropicStreamChunk.contentBlockDelta.partialJson` | `googleAnthropicStreamChunk.contentBlockDelta.thinking` | `googleAnthropicStreamChunk.contentBlockDelta.signature` | `googleAnthropicStreamChunk.messageDelta.usage.inputTokens` | `googleAnthropicStreamChunk.messageDelta.usage.outputTokens` | `googleAnthropicStreamChunk.redactedThinking.data` | `googleAnthropicStreamChunk.responseId` | `googleAnthropicStreamChunk.model` | `googleGeminiStreamChunk.candidates` | `googleGeminiStreamChunk.candidates.${number}.finishReason` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails.${number}.modality` | `googleGeminiStreamChunk.usageMetadata.candidatesTokensDetails` | `googleGeminiStreamChunk.usageMetadata.cacheTokensDetails` | `amazonAnthropicStreamChunk.toolUse.cacheControl.type` | `amazonAnthropicStreamChunk.contentBlockDelta.text` | `amazonAnthropicStreamChunk.contentBlockDelta.partialJson` | `amazonAnthropicStreamChunk.contentBlockDelta.thinking` | `amazonAnthropicStreamChunk.contentBlockDelta.signature` | `amazonAnthropicStreamChunk.messageDelta.usage.inputTokens` | `amazonAnthropicStreamChunk.messageDelta.usage.outputTokens` | `amazonAnthropicStreamChunk.redactedThinking.data` | `amazonAnthropicStreamChunk.responseId` | `amazonAnthropicStreamChunk.model` | `anthropicStreamChunk.toolUse.cacheControl.type` | `anthropicStreamChunk.webSearchToolResult.contentResults.items` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.textContent.text` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.image.mediaType` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.signature` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.thinking` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.redactedThinking.data` | `anthropicStreamChunk.webFetchToolResult.contentError.type` | `anthropicStreamChunk.webFetchToolResult.type` | `anthropicStreamChunk.contentBlockDelta.text` | `anthropicStreamChunk.contentBlockDelta.partialJson` | `anthropicStreamChunk.contentBlockDelta.thinking` | `anthropicStreamChunk.contentBlockDelta.signature` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral1hInputTokens` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral5mInputTokens` | `anthropicStreamChunk.messageDelta.usage.inputTokens` | `anthropicStreamChunk.messageDelta.usage.outputTokens` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webSearchRequests` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webFetchRequests` | `anthropicStreamChunk.responseId` | `anthropicStreamChunk.model` | `predictionId`, 10>>;
|
|
13501
|
+
declare function generateTextByProjectStreamed(projectId: string, options?: GenerateTextByProjectStreamedOptions): Promise<NonNullablePaths<GeneratedTextChunk, `azureChatCompletionChunk.choices` | `azureChatCompletionChunk.choices.${number}.delta.role` | `azureChatCompletionChunk.model` | `openaiChatCompletionChunk.choices` | `openaiChatCompletionChunk.choices.${number}.delta.role` | `openaiChatCompletionChunk.model` | `googleAnthropicStreamChunk.toolUse.cacheControl.type` | `googleAnthropicStreamChunk.contentBlockDelta.text` | `googleAnthropicStreamChunk.contentBlockDelta.partialJson` | `googleAnthropicStreamChunk.contentBlockDelta.thinking` | `googleAnthropicStreamChunk.contentBlockDelta.signature` | `googleAnthropicStreamChunk.messageDelta.usage.inputTokens` | `googleAnthropicStreamChunk.messageDelta.usage.outputTokens` | `googleAnthropicStreamChunk.redactedThinking.data` | `googleAnthropicStreamChunk.responseId` | `googleAnthropicStreamChunk.model` | `googleGeminiStreamChunk.candidates` | `googleGeminiStreamChunk.candidates.${number}.finishReason` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails` | `googleGeminiStreamChunk.usageMetadata.promptTokensDetails.${number}.modality` | `googleGeminiStreamChunk.usageMetadata.candidatesTokensDetails` | `googleGeminiStreamChunk.usageMetadata.cacheTokensDetails` | `amazonAnthropicStreamChunk.toolUse.cacheControl.type` | `amazonAnthropicStreamChunk.contentBlockDelta.text` | `amazonAnthropicStreamChunk.contentBlockDelta.partialJson` | `amazonAnthropicStreamChunk.contentBlockDelta.thinking` | `amazonAnthropicStreamChunk.contentBlockDelta.signature` | `amazonAnthropicStreamChunk.messageDelta.usage.inputTokens` | `amazonAnthropicStreamChunk.messageDelta.usage.outputTokens` | `amazonAnthropicStreamChunk.redactedThinking.data` | `amazonAnthropicStreamChunk.responseId` | `amazonAnthropicStreamChunk.model` | `anthropicStreamChunk.toolUse.cacheControl.type` | `anthropicStreamChunk.webSearchToolResult.contentResults.items` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.type` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.textContent.text` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.image.mediaType` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.signature` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.thinking.thinking` | `anthropicStreamChunk.webFetchToolResult.contentSuccess.content.source.content.${number}.redactedThinking.data` | `anthropicStreamChunk.webFetchToolResult.contentError.type` | `anthropicStreamChunk.webFetchToolResult.type` | `anthropicStreamChunk.contentBlockDelta.text` | `anthropicStreamChunk.contentBlockDelta.partialJson` | `anthropicStreamChunk.contentBlockDelta.thinking` | `anthropicStreamChunk.contentBlockDelta.signature` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral1hInputTokens` | `anthropicStreamChunk.messageDelta.usage.cacheCreation.ephemeral5mInputTokens` | `anthropicStreamChunk.messageDelta.usage.inputTokens` | `anthropicStreamChunk.messageDelta.usage.outputTokens` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webSearchRequests` | `anthropicStreamChunk.messageDelta.usage.serverToolUse.webFetchRequests` | `anthropicStreamChunk.responseId` | `anthropicStreamChunk.model` | `fireworksChatCompletionChunk.choices` | `fireworksChatCompletionChunk.choices.${number}.delta.role` | `fireworksChatCompletionChunk.modelId` | `predictionId`, 10>>;
|
|
13054
13502
|
interface GenerateTextByProjectStreamedOptions {
|
|
13055
13503
|
/** Key-value pairs that will be used to substitute templated parameters in the prompt. */
|
|
13056
13504
|
params?: Record<string, string>;
|
|
@@ -13102,7 +13550,7 @@ interface GenerateModerationOptionsModerationRequestOneOf {
|
|
|
13102
13550
|
* @replacedBy GenerateContentByProject
|
|
13103
13551
|
* @targetRemovalDate 2026-03-31
|
|
13104
13552
|
*/
|
|
13105
|
-
declare function generateImageByProject(projectId: string, options?: GenerateImageByProjectOptions): Promise<NonNullablePaths<GenerateImageByProjectResponse, `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `promptId` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.googleChatBisonRequest.instances` | `materializedPrompt.googleChatBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
13553
|
+
declare function generateImageByProject(projectId: string, options?: GenerateImageByProjectOptions): Promise<NonNullablePaths<GenerateImageByProjectResponse, `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `promptId` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.bytedanceCreateContentTaskRequest.model` | `materializedPrompt.bytedanceCreateContentTaskRequest.content` | `materializedPrompt.bytedanceGenerateImageRequest.model` | `materializedPrompt.bytedanceGenerateImageRequest.prompt` | `materializedPrompt.bytedanceGenerateImageRequest.image` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
13106
13554
|
interface GenerateImageByProjectOptions {
|
|
13107
13555
|
/** Key-value pairs that will be used to substitute templated parameters in the prompt. */
|
|
13108
13556
|
params?: Record<string, string>;
|
|
@@ -13138,7 +13586,7 @@ interface GenerateImageByProjectOptions {
|
|
|
13138
13586
|
* @replacedBy GenerateContentByPrompt
|
|
13139
13587
|
* @targetRemovalDate 2026-03-31
|
|
13140
13588
|
*/
|
|
13141
|
-
declare function generateImageByPrompt(promptId: string, options?: GenerateImageByPromptOptions): Promise<NonNullablePaths<GenerateImageByPromptResponse, `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.googleChatBisonRequest.instances` | `materializedPrompt.googleChatBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
13589
|
+
declare function generateImageByPrompt(promptId: string, options?: GenerateImageByPromptOptions): Promise<NonNullablePaths<GenerateImageByPromptResponse, `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.bytedanceCreateContentTaskRequest.model` | `materializedPrompt.bytedanceCreateContentTaskRequest.content` | `materializedPrompt.bytedanceGenerateImageRequest.model` | `materializedPrompt.bytedanceGenerateImageRequest.prompt` | `materializedPrompt.bytedanceGenerateImageRequest.image` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
13142
13590
|
interface GenerateImageByPromptOptions {
|
|
13143
13591
|
/** Key-value pairs that will be used to substitute templated parameters in the prompt. */
|
|
13144
13592
|
params?: Record<string, string>;
|
|
@@ -13169,7 +13617,7 @@ interface GenerateImageByPromptOptions {
|
|
|
13169
13617
|
* @replacedBy GenerateContentByPromptObject
|
|
13170
13618
|
* @targetRemovalDate 2026-03-31
|
|
13171
13619
|
*/
|
|
13172
|
-
declare function generateImageByPromptObject(options?: GenerateImageByPromptObjectOptions): Promise<NonNullablePaths<GenerateImageByPromptObjectResponse, `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.googleChatBisonRequest.instances` | `materializedPrompt.googleChatBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
13620
|
+
declare function generateImageByPromptObject(options?: GenerateImageByPromptObjectOptions): Promise<NonNullablePaths<GenerateImageByPromptObjectResponse, `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.bytedanceCreateContentTaskRequest.model` | `materializedPrompt.bytedanceCreateContentTaskRequest.content` | `materializedPrompt.bytedanceGenerateImageRequest.model` | `materializedPrompt.bytedanceGenerateImageRequest.prompt` | `materializedPrompt.bytedanceGenerateImageRequest.image` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 8>>;
|
|
13173
13621
|
interface GenerateImageByPromptObjectOptions {
|
|
13174
13622
|
/** Prompt object that describes the image generation request. */
|
|
13175
13623
|
prompt?: Prompt;
|
|
@@ -13201,7 +13649,7 @@ interface GenerateImageByPromptObjectOptions {
|
|
|
13201
13649
|
* @permissionId DATA_SCIENCE.WIX_AI_GATEWAY_GENERATE_CONTENT
|
|
13202
13650
|
* @fqn wix.ds.wix_ai_gateway.v1.WixAiGateway.GenerateContentByPrompt
|
|
13203
13651
|
*/
|
|
13204
|
-
declare function generateContentByPrompt(promptId: string, options?: GenerateContentByPromptOptions): Promise<NonNullablePaths<GenerateContentByPromptResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.googleChatBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.amazonConverseResponse.output.message.role` | `response.amazonConverseResponse.output.message.content` | `response.amazonConverseResponse.output.message.content.${number}.text` | `response.amazonConverseResponse.output.message.content.${number}.reasoningContent.reasoningText.text` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.toolUseId` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.name` | `response.amazonConverseResponse.output.message.content.${number}.toolResult.toolUseId` | `response.amazonConverseResponse.usage.inputTokens` | `response.amazonConverseResponse.usage.outputTokens` | `response.amazonConverseResponse.usage.totalTokens` | `response.amazonConverseResponse.metrics.latencyMs` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.googleGenerateVideoResponse.videos` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.runwareVideoInferenceResponse.data` | `response.runwareVideoInferenceResponse.data.${number}.taskType` | `response.runwareVideoInferenceResponse.data.${number}.taskUuid` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.azureOpenAiResponsesResponse.model` | `response.azureOpenAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.generatedContent.texts` | `response.generatedContent.images` | `response.generatedContent.images.${number}.url` | `response.generatedContent.videos` | `response.generatedContent.thinkingTexts` | `response.generatedContent.tools` | `response.generatedContent.tools.${number}.name` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.googleChatBisonRequest.instances` | `materializedPrompt.googleChatBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 10>>;
|
|
13652
|
+
declare function generateContentByPrompt(promptId: string, options?: GenerateContentByPromptOptions): Promise<NonNullablePaths<GenerateContentByPromptResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.amazonConverseResponse.output.message.role` | `response.amazonConverseResponse.output.message.content` | `response.amazonConverseResponse.output.message.content.${number}.text` | `response.amazonConverseResponse.output.message.content.${number}.reasoningContent.reasoningText.text` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.toolUseId` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.name` | `response.amazonConverseResponse.output.message.content.${number}.toolResult.toolUseId` | `response.amazonConverseResponse.usage.inputTokens` | `response.amazonConverseResponse.usage.outputTokens` | `response.amazonConverseResponse.usage.totalTokens` | `response.amazonConverseResponse.metrics.latencyMs` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.googleGenerateVideoResponse.videos` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.runwareVideoInferenceResponse.data` | `response.runwareVideoInferenceResponse.data.${number}.taskType` | `response.runwareVideoInferenceResponse.data.${number}.taskUuid` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.azureOpenAiResponsesResponse.model` | `response.azureOpenAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.bytedanceGenerateImageResponse.data` | `response.generatedContent.texts` | `response.generatedContent.images` | `response.generatedContent.images.${number}.url` | `response.generatedContent.videos` | `response.generatedContent.thinkingTexts` | `response.generatedContent.tools` | `response.generatedContent.tools.${number}.name` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.bytedanceCreateContentTaskRequest.model` | `materializedPrompt.bytedanceCreateContentTaskRequest.content` | `materializedPrompt.bytedanceGenerateImageRequest.model` | `materializedPrompt.bytedanceGenerateImageRequest.prompt` | `materializedPrompt.bytedanceGenerateImageRequest.image` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 10>>;
|
|
13205
13653
|
interface GenerateContentByPromptOptions {
|
|
13206
13654
|
/** Key-value pairs that will be used to substitute templated parameters in the prompt. */
|
|
13207
13655
|
params?: Record<string, string>;
|
|
@@ -13227,7 +13675,7 @@ interface GenerateContentByPromptOptions {
|
|
|
13227
13675
|
* @permissionId DATA_SCIENCE.WIX_AI_GATEWAY_GENERATE_CONTENT
|
|
13228
13676
|
* @fqn wix.ds.wix_ai_gateway.v1.WixAiGateway.GenerateContentByProject
|
|
13229
13677
|
*/
|
|
13230
|
-
declare function generateContentByProject(projectId: string, options?: GenerateContentByProjectOptions): Promise<NonNullablePaths<GenerateContentByProjectResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.googleChatBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.amazonConverseResponse.output.message.role` | `response.amazonConverseResponse.output.message.content` | `response.amazonConverseResponse.output.message.content.${number}.text` | `response.amazonConverseResponse.output.message.content.${number}.reasoningContent.reasoningText.text` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.toolUseId` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.name` | `response.amazonConverseResponse.output.message.content.${number}.toolResult.toolUseId` | `response.amazonConverseResponse.usage.inputTokens` | `response.amazonConverseResponse.usage.outputTokens` | `response.amazonConverseResponse.usage.totalTokens` | `response.amazonConverseResponse.metrics.latencyMs` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.googleGenerateVideoResponse.videos` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.runwareVideoInferenceResponse.data` | `response.runwareVideoInferenceResponse.data.${number}.taskType` | `response.runwareVideoInferenceResponse.data.${number}.taskUuid` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.azureOpenAiResponsesResponse.model` | `response.azureOpenAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.generatedContent.texts` | `response.generatedContent.images` | `response.generatedContent.images.${number}.url` | `response.generatedContent.videos` | `response.generatedContent.thinkingTexts` | `response.generatedContent.tools` | `response.generatedContent.tools.${number}.name` | `promptId` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.googleChatBisonRequest.instances` | `materializedPrompt.googleChatBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 10>>;
|
|
13678
|
+
declare function generateContentByProject(projectId: string, options?: GenerateContentByProjectOptions): Promise<NonNullablePaths<GenerateContentByProjectResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.amazonConverseResponse.output.message.role` | `response.amazonConverseResponse.output.message.content` | `response.amazonConverseResponse.output.message.content.${number}.text` | `response.amazonConverseResponse.output.message.content.${number}.reasoningContent.reasoningText.text` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.toolUseId` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.name` | `response.amazonConverseResponse.output.message.content.${number}.toolResult.toolUseId` | `response.amazonConverseResponse.usage.inputTokens` | `response.amazonConverseResponse.usage.outputTokens` | `response.amazonConverseResponse.usage.totalTokens` | `response.amazonConverseResponse.metrics.latencyMs` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.googleGenerateVideoResponse.videos` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.runwareVideoInferenceResponse.data` | `response.runwareVideoInferenceResponse.data.${number}.taskType` | `response.runwareVideoInferenceResponse.data.${number}.taskUuid` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.azureOpenAiResponsesResponse.model` | `response.azureOpenAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.bytedanceGenerateImageResponse.data` | `response.generatedContent.texts` | `response.generatedContent.images` | `response.generatedContent.images.${number}.url` | `response.generatedContent.videos` | `response.generatedContent.thinkingTexts` | `response.generatedContent.tools` | `response.generatedContent.tools.${number}.name` | `promptId` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.bytedanceCreateContentTaskRequest.model` | `materializedPrompt.bytedanceCreateContentTaskRequest.content` | `materializedPrompt.bytedanceGenerateImageRequest.model` | `materializedPrompt.bytedanceGenerateImageRequest.prompt` | `materializedPrompt.bytedanceGenerateImageRequest.image` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 10>>;
|
|
13231
13679
|
interface GenerateContentByProjectOptions {
|
|
13232
13680
|
/** Key-value pairs that will be used to substitute templated parameters in the prompt. */
|
|
13233
13681
|
params?: Record<string, string>;
|
|
@@ -13250,7 +13698,7 @@ interface GenerateContentByProjectOptions {
|
|
|
13250
13698
|
* @permissionId DATA_SCIENCE.WIX_AI_GATEWAY_GENERATE_CONTENT
|
|
13251
13699
|
* @fqn wix.ds.wix_ai_gateway.v1.WixAiGateway.GenerateContentByPromptObject
|
|
13252
13700
|
*/
|
|
13253
|
-
declare function generateContentByPromptObject(options?: GenerateContentByPromptObjectOptions): Promise<NonNullablePaths<GenerateContentByPromptObjectResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.googleChatBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.amazonConverseResponse.output.message.role` | `response.amazonConverseResponse.output.message.content` | `response.amazonConverseResponse.output.message.content.${number}.text` | `response.amazonConverseResponse.output.message.content.${number}.reasoningContent.reasoningText.text` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.toolUseId` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.name` | `response.amazonConverseResponse.output.message.content.${number}.toolResult.toolUseId` | `response.amazonConverseResponse.usage.inputTokens` | `response.amazonConverseResponse.usage.outputTokens` | `response.amazonConverseResponse.usage.totalTokens` | `response.amazonConverseResponse.metrics.latencyMs` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.googleGenerateVideoResponse.videos` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.runwareVideoInferenceResponse.data` | `response.runwareVideoInferenceResponse.data.${number}.taskType` | `response.runwareVideoInferenceResponse.data.${number}.taskUuid` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.azureOpenAiResponsesResponse.model` | `response.azureOpenAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.generatedContent.texts` | `response.generatedContent.images` | `response.generatedContent.images.${number}.url` | `response.generatedContent.videos` | `response.generatedContent.thinkingTexts` | `response.generatedContent.tools` | `response.generatedContent.tools.${number}.name` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.googleChatBisonRequest.instances` | `materializedPrompt.googleChatBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 10>>;
|
|
13701
|
+
declare function generateContentByPromptObject(options?: GenerateContentByPromptObjectOptions): Promise<NonNullablePaths<GenerateContentByPromptObjectResponse, `response.openAiChatCompletionResponse.model` | `response.openAiChatCompletionResponse.choices` | `response.openAiChatCompletionResponse.choices.${number}.message.role` | `response.googleTextBisonResponse.predictions` | `response.azureChatCompletionResponse.model` | `response.azureChatCompletionResponse.choices` | `response.azureChatCompletionResponse.choices.${number}.message.role` | `response.googleGeminiGenerateContentResponse.candidates` | `response.googleGeminiGenerateContentResponse.candidates.${number}.finishReason` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.promptTokensDetails.${number}.modality` | `response.googleGeminiGenerateContentResponse.usageMetadata.candidatesTokensDetails` | `response.googleGeminiGenerateContentResponse.usageMetadata.cacheTokensDetails` | `response.anthropicClaudeResponse.responseId` | `response.anthropicClaudeResponse.model` | `response.anthropicClaudeResponse.responseType` | `response.anthropicClaudeResponse.role` | `response.anthropicClaudeResponse.content` | `response.anthropicClaudeResponse.usage.inputTokens` | `response.anthropicClaudeResponse.usage.outputTokens` | `response.anthropicClaudeResponse.contentBlocks` | `response.anthropicClaudeResponse.contentBlocks.${number}.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.anthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.anthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.anthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.anthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.googleAnthropicClaudeResponse.responseId` | `response.googleAnthropicClaudeResponse.model` | `response.googleAnthropicClaudeResponse.responseType` | `response.googleAnthropicClaudeResponse.role` | `response.googleAnthropicClaudeResponse.content` | `response.googleAnthropicClaudeResponse.usage.inputTokens` | `response.googleAnthropicClaudeResponse.usage.outputTokens` | `response.googleAnthropicClaudeResponse.contentBlocks` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.text` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.textContent.cacheControl.type` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.imageUrl.mediaType` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.signature` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.thinking.thinking` | `response.googleAnthropicClaudeResponse.contentBlocks.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.responseId` | `response.invokeAnthropicModelResponse.model` | `response.invokeAnthropicModelResponse.type` | `response.invokeAnthropicModelResponse.role` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral1hInputTokens` | `response.invokeAnthropicModelResponse.usage.cacheCreation.ephemeral5mInputTokens` | `response.invokeAnthropicModelResponse.usage.inputTokens` | `response.invokeAnthropicModelResponse.usage.outputTokens` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webSearchRequests` | `response.invokeAnthropicModelResponse.usage.serverToolUse.webFetchRequests` | `response.invokeAnthropicModelResponse.container.expiresAt` | `response.invokeAnthropicModelResponse.container._id` | `response.invokeAnthropicModelResponse.content` | `response.invokeAnthropicModelResponse.content.${number}.textContent.text` | `response.invokeAnthropicModelResponse.content.${number}.textContent.cacheControl.type` | `response.invokeAnthropicModelResponse.content.${number}.image.mediaType` | `response.invokeAnthropicModelResponse.content.${number}.thinking.signature` | `response.invokeAnthropicModelResponse.content.${number}.thinking.thinking` | `response.invokeAnthropicModelResponse.content.${number}.redactedThinking.data` | `response.invokeAnthropicModelResponse.content.${number}.document.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentSuccess.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.contentError.type` | `response.invokeAnthropicModelResponse.content.${number}.webFetchToolResult.type` | `response.amazonConverseResponse.output.message.role` | `response.amazonConverseResponse.output.message.content` | `response.amazonConverseResponse.output.message.content.${number}.text` | `response.amazonConverseResponse.output.message.content.${number}.reasoningContent.reasoningText.text` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.toolUseId` | `response.amazonConverseResponse.output.message.content.${number}.toolUse.name` | `response.amazonConverseResponse.output.message.content.${number}.toolResult.toolUseId` | `response.amazonConverseResponse.usage.inputTokens` | `response.amazonConverseResponse.usage.outputTokens` | `response.amazonConverseResponse.usage.totalTokens` | `response.amazonConverseResponse.metrics.latencyMs` | `response.perplexityChatCompletionResponse.model` | `response.perplexityChatCompletionResponse.citations` | `response.perplexityChatCompletionResponse.choices` | `response.perplexityChatCompletionResponse.choices.${number}.message.content` | `response.perplexityChatCompletionResponse.choices.${number}.message.role` | `response.perplexityChatCompletionResponse.images` | `response.perplexityChatCompletionResponse.relatedQuestions` | `response.openAiCreateImageResponse.data` | `response.openAiCreateImageResponse.model` | `response.stabilityAiTextToImageResponse.data` | `response.stabilityAiTextToImageResponse.model` | `response.stabilityAiGenerateCoreResponse.data` | `response.stabilityAiGenerateCoreResponse.model` | `response.stabilityAiStableDiffusionResponse.data` | `response.stabilityAiStableDiffusionResponse.model` | `response.replicateCreatePredictionResponse.output` | `response.replicateCreatePredictionResponse.textOutput` | `response.stabilityAiEditImageWithPromptResponse.data` | `response.stabilityAiEditImageWithPromptResponse.model` | `response.runwareTextToImageResponse.data` | `response.runwareTextToImageResponse.data.${number}.taskUuid` | `response.runwareTextToImageResponse.data.${number}.imageUuid` | `response.runwareTextToImageResponse.data.${number}.nsfwContent` | `response.googleGenerateImageResponse.predictions` | `response.googleGenerateVideoResponse.videos` | `response.mlPlatformGenerateImageResponse.output` | `response.openAiCreateOpenAiImageResponse.data` | `response.openAiCreateOpenAiImageResponse.model` | `response.openAiEditOpenAiImageResponse.data` | `response.openAiEditOpenAiImageResponse.model` | `response.googleCreateChatCompletionResponse.model` | `response.googleCreateChatCompletionResponse.choices` | `response.googleCreateChatCompletionResponse.choices.${number}.message.role` | `response.mlPlatformOpenAiRawResponse.modelId` | `response.mlPlatformOpenAiRawResponse.choices` | `response.mlPlatformOpenAiRawResponse.choices.${number}.message.role` | `response.runwareVideoInferenceResponse.data` | `response.runwareVideoInferenceResponse.data.${number}.taskType` | `response.runwareVideoInferenceResponse.data.${number}.taskUuid` | `response.openAiResponsesResponse.model` | `response.openAiResponsesResponse.output` | `response.azureOpenAiResponsesResponse.model` | `response.azureOpenAiResponsesResponse.output` | `response.fireworksInvokeCustomOpenAiResponse.modelId` | `response.fireworksInvokeCustomOpenAiResponse.choices` | `response.fireworksInvokeCustomOpenAiResponse.choices.${number}.message.role` | `response.bytedanceGenerateImageResponse.data` | `response.generatedContent.texts` | `response.generatedContent.images` | `response.generatedContent.images.${number}.url` | `response.generatedContent.videos` | `response.generatedContent.thinkingTexts` | `response.generatedContent.tools` | `response.generatedContent.tools.${number}.name` | `materializedPrompt.openAiChatCompletionRequest.model` | `materializedPrompt.openAiChatCompletionRequest.messages` | `materializedPrompt.openAiChatCompletionRequest.messages.${number}.role` | `materializedPrompt.openAiChatCompletionRequest.functions` | `materializedPrompt.openAiChatCompletionRequest.stop` | `materializedPrompt.openAiChatCompletionRequest.tools` | `materializedPrompt.openAiChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleTextBisonRequest.instances` | `materializedPrompt.googleTextBisonRequest.parameters.stopSequences` | `materializedPrompt.googleTextBisonRequest.model` | `materializedPrompt.azureChatCompletionRequest.model` | `materializedPrompt.azureChatCompletionRequest.messages` | `materializedPrompt.azureChatCompletionRequest.messages.${number}.role` | `materializedPrompt.azureChatCompletionRequest.functions` | `materializedPrompt.azureChatCompletionRequest.stop` | `materializedPrompt.azureChatCompletionRequest.tools` | `materializedPrompt.azureChatCompletionRequest.tools.${number}.type` | `materializedPrompt.googleGeminiGenerateContentRequest.model` | `materializedPrompt.googleGeminiGenerateContentRequest.contents` | `materializedPrompt.googleGeminiGenerateContentRequest.contents.${number}.role` | `materializedPrompt.googleGeminiGenerateContentRequest.systemInstruction.parts` | `materializedPrompt.googleGeminiGenerateContentRequest.tools` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `materializedPrompt.googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `materializedPrompt.googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `materializedPrompt.googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `materializedPrompt.anthropicClaudeRequest.model` | `materializedPrompt.anthropicClaudeRequest.messages` | `materializedPrompt.anthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.anthropicClaudeRequest.systemPrompt` | `materializedPrompt.anthropicClaudeRequest.stopSequences` | `materializedPrompt.anthropicClaudeRequest.tools` | `materializedPrompt.anthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.anthropicClaudeRequest.toolChoice.type` | `materializedPrompt.anthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.anthropicClaudeRequest.mcpServers` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.anthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.googleAnthropicClaudeRequest.model` | `materializedPrompt.googleAnthropicClaudeRequest.messages` | `materializedPrompt.googleAnthropicClaudeRequest.messages.${number}.role` | `materializedPrompt.googleAnthropicClaudeRequest.systemPrompt` | `materializedPrompt.googleAnthropicClaudeRequest.stopSequences` | `materializedPrompt.googleAnthropicClaudeRequest.tools` | `materializedPrompt.googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `materializedPrompt.googleAnthropicClaudeRequest.toolChoice.type` | `materializedPrompt.googleAnthropicClaudeRequest.thinking.budgetTokens` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.name` | `materializedPrompt.googleAnthropicClaudeRequest.mcpServers.${number}.type` | `materializedPrompt.invokeAnthropicModelRequest.model` | `materializedPrompt.invokeAnthropicModelRequest.messages` | `materializedPrompt.invokeAnthropicModelRequest.messages.${number}.role` | `materializedPrompt.invokeAnthropicModelRequest.systemPrompt` | `materializedPrompt.invokeAnthropicModelRequest.stopSequences` | `materializedPrompt.invokeAnthropicModelRequest.tools` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.name` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `materializedPrompt.invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `materializedPrompt.invokeAnthropicModelRequest.toolChoice.type` | `materializedPrompt.invokeAnthropicModelRequest.thinking.budgetTokens` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.name` | `materializedPrompt.invokeAnthropicModelRequest.mcpServers.${number}.type` | `materializedPrompt.llamaModelRequest.model` | `materializedPrompt.amazonConverseRequest.model` | `materializedPrompt.amazonConverseRequest.messages` | `materializedPrompt.amazonConverseRequest.messages.${number}.role` | `materializedPrompt.amazonConverseRequest.inferenceConfig.stopSequences` | `materializedPrompt.amazonConverseRequest.toolConfig.tools` | `materializedPrompt.amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `materializedPrompt.amazonConverseRequest.system` | `materializedPrompt.amazonConverseRequest.additionalModelResponseFieldPaths` | `materializedPrompt.openAiCreateImageRequest.model` | `materializedPrompt.openAiCreateImageRequest.quality` | `materializedPrompt.openAiCreateImageRequest.size` | `materializedPrompt.openAiCreateImageRequest.style` | `materializedPrompt.stabilityAiTextToImageRequest.model` | `materializedPrompt.stabilityAiTextToImageRequest.textPrompts` | `materializedPrompt.stabilityAiTextToImageRequest.clipGuidancePreset` | `materializedPrompt.stabilityAiTextToImageRequest.sampler` | `materializedPrompt.stabilityAiTextToImageRequest.stylePreset` | `materializedPrompt.stabilityAiGenerateCoreRequest.model` | `materializedPrompt.stabilityAiGenerateCoreRequest.stylePreset` | `materializedPrompt.stabilityAiStableDiffusionRequest.mode` | `materializedPrompt.stabilityAiStableDiffusionRequest.model` | `materializedPrompt.stabilityAiStableDiffusionRequest.outputFormat` | `materializedPrompt.blackForestLabsGenerateImageRequest.model` | `materializedPrompt.replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `materializedPrompt.replicateCreatePredictionRequest.perceptronIsaac01.response` | `materializedPrompt.replicateCreatePredictionRequest.qwenImageLayered.image` | `materializedPrompt.replicateCreatePredictionRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.model` | `materializedPrompt.stabilityAiEditWithPromptRequest.stylePreset` | `materializedPrompt.runwareTextToImageRequest.positivePrompt` | `materializedPrompt.runwareTextToImageRequest.height` | `materializedPrompt.runwareTextToImageRequest.width` | `materializedPrompt.runwareTextToImageRequest.referenceImages` | `materializedPrompt.runwareTextToImageRequest.model` | `materializedPrompt.runwareTextToImageRequest.loraModels` | `materializedPrompt.runwareTextToImageRequest.inputs.referenceImages` | `materializedPrompt.mlPlatformLlamaModelRequest.modelId` | `materializedPrompt.perplexityChatCompletionRequest.model` | `materializedPrompt.perplexityChatCompletionRequest.messages` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.content` | `materializedPrompt.perplexityChatCompletionRequest.messages.${number}.role` | `materializedPrompt.perplexityChatCompletionRequest.searchDomainFilter` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.jsonSchema` | `materializedPrompt.perplexityChatCompletionRequest.responseFormat.regex` | `materializedPrompt.googleGenerateImageRequest.model` | `materializedPrompt.googleGenerateImageRequest.instances` | `materializedPrompt.mlPlatformGenerateImageRequest.model` | `materializedPrompt.openAiCreateOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.model` | `materializedPrompt.openAiEditOpenAiImageRequest.imageUrls` | `materializedPrompt.googleGenerateVideoRequest.model` | `materializedPrompt.googleGenerateVideoRequest.instances` | `materializedPrompt.googleCreateChatCompletionRequest.model` | `materializedPrompt.googleCreateChatCompletionRequest.messages` | `materializedPrompt.googleCreateChatCompletionRequest.messages.${number}.role` | `materializedPrompt.mlPlatformOpenAiRawRequest.modelId` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages` | `materializedPrompt.mlPlatformOpenAiRawRequest.messages.${number}.role` | `materializedPrompt.runwareVideoInferenceRequest.outputFormat` | `materializedPrompt.runwareVideoInferenceRequest.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `materializedPrompt.runwareVideoInferenceRequest.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.model` | `materializedPrompt.runwareVideoInferenceRequest.inputs.frameImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceImages` | `materializedPrompt.runwareVideoInferenceRequest.inputs.referenceVideos` | `materializedPrompt.openAiResponsesRequest.model` | `materializedPrompt.openAiResponsesRequest.include` | `materializedPrompt.openAiResponsesRequest.input` | `materializedPrompt.openAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.openAiResponsesRequest.tools` | `materializedPrompt.azureOpenAiResponsesRequest.model` | `materializedPrompt.azureOpenAiResponsesRequest.include` | `materializedPrompt.azureOpenAiResponsesRequest.input` | `materializedPrompt.azureOpenAiResponsesRequest.input.${number}.message.role` | `materializedPrompt.azureOpenAiResponsesRequest.tools` | `materializedPrompt.openAiCreateVideoRequest.prompt` | `materializedPrompt.openAiCreateVideoRequest.model` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.modelId` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.functions` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.stop` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools` | `materializedPrompt.fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `materializedPrompt.bytedanceCreateContentTaskRequest.model` | `materializedPrompt.bytedanceCreateContentTaskRequest.content` | `materializedPrompt.bytedanceGenerateImageRequest.model` | `materializedPrompt.bytedanceGenerateImageRequest.prompt` | `materializedPrompt.bytedanceGenerateImageRequest.image` | `materializedPrompt.templatedParameterNames` | `materializedPrompt.templatedDynamicPropertiesNames` | `predictionId`, 10>>;
|
|
13254
13702
|
interface GenerateContentByPromptObjectOptions {
|
|
13255
13703
|
/** Prompt object that describes the content generation request. */
|
|
13256
13704
|
prompt?: Prompt;
|
|
@@ -13349,8 +13797,6 @@ interface PublishPromptOptions {
|
|
|
13349
13797
|
openAiChatCompletionRequest?: OpenaiproxyV1CreateChatCompletionRequest;
|
|
13350
13798
|
/** Google bison text completion request. */
|
|
13351
13799
|
googleTextBisonRequest?: TextBisonPredictRequest;
|
|
13352
|
-
/** Google bison chat completion request. */
|
|
13353
|
-
googleChatBisonRequest?: ChatBisonPredictRequest;
|
|
13354
13800
|
/** Azure OpenAI chat completion request. */
|
|
13355
13801
|
azureChatCompletionRequest?: CreateChatCompletionRequest;
|
|
13356
13802
|
/** Google Gemini generate content request. */
|
|
@@ -13386,7 +13832,7 @@ interface PublishPromptOptions {
|
|
|
13386
13832
|
/** Perplexity chat completion request */
|
|
13387
13833
|
perplexityChatCompletionRequest?: InvokeChatCompletionRequest;
|
|
13388
13834
|
/** Google AI - generate image request */
|
|
13389
|
-
googleGenerateImageRequest?:
|
|
13835
|
+
googleGenerateImageRequest?: V1GenerateImageRequest;
|
|
13390
13836
|
/** ML platform - generate image request */
|
|
13391
13837
|
mlPlatformGenerateImageRequest?: GenerateImageMlPlatformRequest;
|
|
13392
13838
|
/** OpenAI image creation response. */
|
|
@@ -13409,6 +13855,10 @@ interface PublishPromptOptions {
|
|
|
13409
13855
|
openAiCreateVideoRequest?: CreateVideoRequest;
|
|
13410
13856
|
/** Fireworks - OpenAI payload */
|
|
13411
13857
|
fireworksInvokeCustomOpenAiRequest?: InvokeCustomOpenAiModelRequest;
|
|
13858
|
+
/** Bytedance - Create content task request (video generation) */
|
|
13859
|
+
bytedanceCreateContentTaskRequest?: CreateContentTaskRequest;
|
|
13860
|
+
/** Bytedance - Generate image request (Seedream models) */
|
|
13861
|
+
bytedanceGenerateImageRequest?: GenerateImageRequest;
|
|
13412
13862
|
/**
|
|
13413
13863
|
* Prompt id.
|
|
13414
13864
|
* @format GUID
|
|
@@ -13442,7 +13892,7 @@ interface PublishPromptOptions {
|
|
|
13442
13892
|
* @returns Prompt object from service's storage.
|
|
13443
13893
|
* @fqn wix.ds.wix_ai_gateway.v1.WixAiGateway.GetPrompt
|
|
13444
13894
|
*/
|
|
13445
|
-
declare function getPrompt(promptId: string, options?: GetPromptOptions): Promise<NonNullablePaths<Prompt, `openAiChatCompletionRequest.model` | `openAiChatCompletionRequest.messages` | `openAiChatCompletionRequest.messages.${number}.role` | `openAiChatCompletionRequest.functions` | `openAiChatCompletionRequest.stop` | `openAiChatCompletionRequest.tools` | `openAiChatCompletionRequest.tools.${number}.type` | `googleTextBisonRequest.instances` | `googleTextBisonRequest.parameters.stopSequences` | `googleTextBisonRequest.model` | `
|
|
13895
|
+
declare function getPrompt(promptId: string, options?: GetPromptOptions): Promise<NonNullablePaths<Prompt, `openAiChatCompletionRequest.model` | `openAiChatCompletionRequest.messages` | `openAiChatCompletionRequest.messages.${number}.role` | `openAiChatCompletionRequest.functions` | `openAiChatCompletionRequest.stop` | `openAiChatCompletionRequest.tools` | `openAiChatCompletionRequest.tools.${number}.type` | `googleTextBisonRequest.instances` | `googleTextBisonRequest.parameters.stopSequences` | `googleTextBisonRequest.model` | `azureChatCompletionRequest.model` | `azureChatCompletionRequest.messages` | `azureChatCompletionRequest.messages.${number}.role` | `azureChatCompletionRequest.functions` | `azureChatCompletionRequest.stop` | `azureChatCompletionRequest.tools` | `azureChatCompletionRequest.tools.${number}.type` | `googleGeminiGenerateContentRequest.model` | `googleGeminiGenerateContentRequest.contents` | `googleGeminiGenerateContentRequest.contents.${number}.role` | `googleGeminiGenerateContentRequest.systemInstruction.parts` | `googleGeminiGenerateContentRequest.tools` | `googleGeminiGenerateContentRequest.tools.${number}.googleSearchRetrieval.dynamicRetrievalConfig.mode` | `googleGeminiGenerateContentRequest.tools.${number}.computerUse.environment` | `googleGeminiGenerateContentRequest.safetySettings` | `googleGeminiGenerateContentRequest.safetySettings.${number}.category` | `googleGeminiGenerateContentRequest.safetySettings.${number}.threshold` | `googleGeminiGenerateContentRequest.generationConfig.stopSequences` | `googleGeminiGenerateContentRequest.generationConfig.responseModalities` | `googleGeminiGenerateContentRequest.generationConfig.imageConfig.personGeneration` | `googleGeminiGenerateContentRequest.generationConfig.mediaResolution` | `googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.mode` | `googleGeminiGenerateContentRequest.toolConfig.functionCallingConfig.allowedFunctionNames` | `anthropicClaudeRequest.model` | `anthropicClaudeRequest.messages` | `anthropicClaudeRequest.messages.${number}.role` | `anthropicClaudeRequest.systemPrompt` | `anthropicClaudeRequest.stopSequences` | `anthropicClaudeRequest.tools` | `anthropicClaudeRequest.tools.${number}.cacheControl.type` | `anthropicClaudeRequest.toolChoice.type` | `anthropicClaudeRequest.thinking.budgetTokens` | `anthropicClaudeRequest.mcpServers` | `anthropicClaudeRequest.mcpServers.${number}.name` | `anthropicClaudeRequest.mcpServers.${number}.type` | `googleAnthropicClaudeRequest.model` | `googleAnthropicClaudeRequest.messages` | `googleAnthropicClaudeRequest.messages.${number}.role` | `googleAnthropicClaudeRequest.systemPrompt` | `googleAnthropicClaudeRequest.stopSequences` | `googleAnthropicClaudeRequest.tools` | `googleAnthropicClaudeRequest.tools.${number}.cacheControl.type` | `googleAnthropicClaudeRequest.toolChoice.type` | `googleAnthropicClaudeRequest.thinking.budgetTokens` | `googleAnthropicClaudeRequest.mcpServers` | `googleAnthropicClaudeRequest.mcpServers.${number}.name` | `googleAnthropicClaudeRequest.mcpServers.${number}.type` | `invokeAnthropicModelRequest.model` | `invokeAnthropicModelRequest.messages` | `invokeAnthropicModelRequest.messages.${number}.role` | `invokeAnthropicModelRequest.systemPrompt` | `invokeAnthropicModelRequest.stopSequences` | `invokeAnthropicModelRequest.tools` | `invokeAnthropicModelRequest.tools.${number}.custom.name` | `invokeAnthropicModelRequest.tools.${number}.custom.cacheControl.type` | `invokeAnthropicModelRequest.tools.${number}.computerUse.displayWidthPx` | `invokeAnthropicModelRequest.tools.${number}.computerUse.displayHeightPx` | `invokeAnthropicModelRequest.toolChoice.type` | `invokeAnthropicModelRequest.thinking.budgetTokens` | `invokeAnthropicModelRequest.mcpServers` | `invokeAnthropicModelRequest.mcpServers.${number}.name` | `invokeAnthropicModelRequest.mcpServers.${number}.type` | `llamaModelRequest.model` | `amazonConverseRequest.model` | `amazonConverseRequest.messages` | `amazonConverseRequest.messages.${number}.role` | `amazonConverseRequest.inferenceConfig.stopSequences` | `amazonConverseRequest.toolConfig.tools` | `amazonConverseRequest.toolConfig.tools.${number}.toolSpec.name` | `amazonConverseRequest.system` | `amazonConverseRequest.additionalModelResponseFieldPaths` | `openAiCreateImageRequest.model` | `openAiCreateImageRequest.quality` | `openAiCreateImageRequest.size` | `openAiCreateImageRequest.style` | `stabilityAiTextToImageRequest.model` | `stabilityAiTextToImageRequest.textPrompts` | `stabilityAiTextToImageRequest.clipGuidancePreset` | `stabilityAiTextToImageRequest.sampler` | `stabilityAiTextToImageRequest.stylePreset` | `stabilityAiGenerateCoreRequest.model` | `stabilityAiGenerateCoreRequest.stylePreset` | `stabilityAiStableDiffusionRequest.mode` | `stabilityAiStableDiffusionRequest.model` | `stabilityAiStableDiffusionRequest.outputFormat` | `blackForestLabsGenerateImageRequest.model` | `replicateCreatePredictionRequest.lucatacoFlorence2Large.taskInput` | `replicateCreatePredictionRequest.perceptronIsaac01.response` | `replicateCreatePredictionRequest.qwenImageLayered.image` | `replicateCreatePredictionRequest.model` | `stabilityAiEditWithPromptRequest.model` | `stabilityAiEditWithPromptRequest.stylePreset` | `runwareTextToImageRequest.positivePrompt` | `runwareTextToImageRequest.height` | `runwareTextToImageRequest.width` | `runwareTextToImageRequest.referenceImages` | `runwareTextToImageRequest.model` | `runwareTextToImageRequest.loraModels` | `runwareTextToImageRequest.inputs.referenceImages` | `mlPlatformLlamaModelRequest.modelId` | `perplexityChatCompletionRequest.model` | `perplexityChatCompletionRequest.messages` | `perplexityChatCompletionRequest.messages.${number}.content` | `perplexityChatCompletionRequest.messages.${number}.role` | `perplexityChatCompletionRequest.searchDomainFilter` | `perplexityChatCompletionRequest.responseFormat.jsonSchema` | `perplexityChatCompletionRequest.responseFormat.regex` | `googleGenerateImageRequest.model` | `googleGenerateImageRequest.instances` | `mlPlatformGenerateImageRequest.model` | `openAiCreateOpenAiImageRequest.model` | `openAiEditOpenAiImageRequest.model` | `openAiEditOpenAiImageRequest.imageUrls` | `googleGenerateVideoRequest.model` | `googleGenerateVideoRequest.instances` | `googleCreateChatCompletionRequest.model` | `googleCreateChatCompletionRequest.messages` | `googleCreateChatCompletionRequest.messages.${number}.role` | `mlPlatformOpenAiRawRequest.modelId` | `mlPlatformOpenAiRawRequest.messages` | `mlPlatformOpenAiRawRequest.messages.${number}.role` | `runwareVideoInferenceRequest.outputFormat` | `runwareVideoInferenceRequest.frameImages` | `runwareVideoInferenceRequest.frameImages.${number}.inputImage` | `runwareVideoInferenceRequest.referenceImages` | `runwareVideoInferenceRequest.model` | `runwareVideoInferenceRequest.inputs.frameImages` | `runwareVideoInferenceRequest.inputs.referenceImages` | `runwareVideoInferenceRequest.inputs.referenceVideos` | `openAiResponsesRequest.model` | `openAiResponsesRequest.include` | `openAiResponsesRequest.input` | `openAiResponsesRequest.input.${number}.message.role` | `openAiResponsesRequest.tools` | `azureOpenAiResponsesRequest.model` | `azureOpenAiResponsesRequest.include` | `azureOpenAiResponsesRequest.input` | `azureOpenAiResponsesRequest.input.${number}.message.role` | `azureOpenAiResponsesRequest.tools` | `openAiCreateVideoRequest.prompt` | `openAiCreateVideoRequest.model` | `fireworksInvokeCustomOpenAiRequest.modelId` | `fireworksInvokeCustomOpenAiRequest.messages` | `fireworksInvokeCustomOpenAiRequest.messages.${number}.role` | `fireworksInvokeCustomOpenAiRequest.functions` | `fireworksInvokeCustomOpenAiRequest.stop` | `fireworksInvokeCustomOpenAiRequest.tools` | `fireworksInvokeCustomOpenAiRequest.tools.${number}.type` | `bytedanceCreateContentTaskRequest.model` | `bytedanceCreateContentTaskRequest.content` | `bytedanceGenerateImageRequest.model` | `bytedanceGenerateImageRequest.prompt` | `bytedanceGenerateImageRequest.image` | `templatedParameterNames` | `templatedDynamicPropertiesNames`, 7>>;
|
|
13446
13896
|
interface GetPromptOptions {
|
|
13447
13897
|
/**
|
|
13448
13898
|
* Key-value pairs that will be used to substitute templated parameters in the prompt.
|
|
@@ -13569,6 +14019,8 @@ interface PollImageGenerationResultOptions extends PollImageGenerationResultOpti
|
|
|
13569
14019
|
runwareGetTaskResultRequest?: GetTaskResultRequest;
|
|
13570
14020
|
/** OpenAI getVideoResult request */
|
|
13571
14021
|
openAiGetVideoResultRequest?: GetVideoResultRequest;
|
|
14022
|
+
/** Bytedance getContentTask request */
|
|
14023
|
+
bytedanceGetContentTaskRequest?: GetContentTaskRequest;
|
|
13572
14024
|
}
|
|
13573
14025
|
/** @oneof */
|
|
13574
14026
|
interface PollImageGenerationResultOptionsRequestOneOf {
|
|
@@ -13580,6 +14032,8 @@ interface PollImageGenerationResultOptionsRequestOneOf {
|
|
|
13580
14032
|
runwareGetTaskResultRequest?: GetTaskResultRequest;
|
|
13581
14033
|
/** OpenAI getVideoResult request */
|
|
13582
14034
|
openAiGetVideoResultRequest?: GetVideoResultRequest;
|
|
14035
|
+
/** Bytedance getContentTask request */
|
|
14036
|
+
bytedanceGetContentTaskRequest?: GetContentTaskRequest;
|
|
13583
14037
|
}
|
|
13584
14038
|
|
|
13585
|
-
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 DatalabOcr, type DatalabOcrOutput, 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 ExtractFromImageMetrics, ExtractFromImageModel, type ExtractFromImageModelWithLiterals, type ExtractFromImageRequest, type ExtractFromImageRequestInputOneOf, type ExtractFromImageResponse, type ExtractFromImageResponseOutputOneOf, type ExtractFromImageResponseTokenUsage, type ExtractFromImageUrls, type FallbackPromptConfig, type FallbackProperties, type FileContent, type FileInput, type FineTuningSpec, FinishReason, type FinishReasonWithLiterals, type Fireworks_proxyV1ChatCompletionMessage, type Fireworks_proxyV1ChatCompletionMessageContentPart, type Fireworks_proxyV1ChatCompletionMessageContentPartContentValueOneOf, type Fireworks_proxyV1ChatCompletionMessageImageUrlContent, Fireworks_proxyV1ChatCompletionMessageMessageRole, type Fireworks_proxyV1ChatCompletionMessageMessageRoleWithLiterals, type FloatEmbedding, type FluxDevControlnet, type FluxPulid, type FrameImage, type FunctionCall, type FunctionCallingConfig, type FunctionDeclaration, type FunctionResponse, type FunctionResponseBlob, type FunctionResponsePart, type FunctionResponsePartDataOneOf, type FunctionSignature, type FunctionWithArgs, type GatewayContentBlock, type GatewayContentBlockTypeOneOf, type GatewayMessageDefinition, GatewayMessageDefinitionRole, type GatewayMessageDefinitionRoleWithLiterals, type GatewayToolDefinition, type GatewayToolDefinitionCustomTool, type GatewayToolDefinitionToolOneOf, GenerateAnImageModel, type GenerateAnImageModelWithLiterals, type GenerateAnImageRequest, type GenerateAnImageResponse, type GenerateAudioOptions, type GenerateAudioOptionsAudioRequestOneOf, type GenerateAudioRequest, type GenerateAudioRequestAudioRequestOneOf, type GenerateAudioResponse, type GenerateAudioResponseAudioResponseOneOf, type GenerateAudioStreamedOptions, type GenerateAudioStreamedOptionsAudioRequestOneOf, type GenerateContentByProjectOptions, type GenerateContentByProjectRequest, type GenerateContentByProjectResponse, type GenerateContentByPromptObjectOptions, type GenerateContentByPromptObjectRequest, type GenerateContentByPromptObjectResponse, type GenerateContentByPromptOptions, type GenerateContentByPromptRequest, type GenerateContentByPromptResponse, type GenerateContentModelResponse, type GenerateContentModelResponseResponseOneOf, type GenerateContentRequest, type GenerateContentResponse, type GenerateCoreRequest, GenerateCoreRequestStylePreset, type GenerateCoreRequestStylePresetWithLiterals, type GenerateCoreResponse, type GenerateEmbeddingOptions, type GenerateEmbeddingOptionsEmbeddingRequestOneOf, type GenerateEmbeddingsRequest, type GenerateEmbeddingsRequestEmbeddingRequestOneOf, type GenerateEmbeddingsResponse, type GenerateEmbeddingsResponseEmbeddingResponseOneOf, type GenerateImageByProjectOptions, type GenerateImageByProjectRequest, type GenerateImageByProjectResponse, type GenerateImageByPromptObjectOptions, type GenerateImageByPromptObjectRequest, type GenerateImageByPromptObjectResponse, type GenerateImageByPromptOptions, type GenerateImageByPromptRequest, type GenerateImageByPromptResponse, GenerateImageMlPlatformModel, type GenerateImageMlPlatformModelWithLiterals, type GenerateImageMlPlatformRequest, type GenerateImageMlPlatformRequestInputOneOf, type GenerateImageMlPlatformResponse, type GenerateImageRequest, type GenerateImageResponse, type GenerateModerationOptions, type GenerateModerationOptionsModerationRequestOneOf, type GenerateModerationRequest, type GenerateModerationRequestModerationRequestOneOf, type GenerateModerationResponse, type GenerateModerationResponseModerationResponseOneOf, type GenerateStableDiffusionRequest, GenerateStableDiffusionRequestOutputFormat, type GenerateStableDiffusionRequestOutputFormatWithLiterals, type GenerateStableDiffusionResponse, type GenerateTextByProjectOptions, type GenerateTextByProjectRequest, type GenerateTextByProjectResponse, type GenerateTextByProjectStreamedOptions, type GenerateTextByPromptObjectOptions, type GenerateTextByPromptObjectRequest, type GenerateTextByPromptObjectResponse, type GenerateTextByPromptObjectStreamedOptions, type GenerateTextByPromptOptions, type GenerateTextByPromptRequest, type GenerateTextByPromptResponse, type GenerateTextByPromptStreamedOptions, type GenerateTranscriptionOptions, type GenerateTranscriptionOptionsTranscriptionRequestOneOf, type GenerateTranscriptionRequest, type GenerateTranscriptionRequestTranscriptionRequestOneOf, type GenerateTranscriptionResponse, type GenerateTranscriptionResponseTranscriptionResponseOneOf, type GenerateVideoInstance, type GenerateVideoParameters, type GenerateVideoRequest, type GenerateVideoResponse, type GeneratedAudioChunk, type GeneratedAudioChunkAudioChunkOneOf, type GeneratedContent, type GeneratedTextChunk, type GeneratedTextChunkModelChunkOneOf, type GeneratedVideo, type GenerationConfig, GenerationMode, type GenerationModeWithLiterals, type GenerationRequestedEvent, type GenerationThinkingConfig, type GetApplicationUsageRequest, type GetApplicationUsageResponse, type 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 VideoInputs, type VideoJob, VideoModel, type VideoModelWithLiterals, type VoiceSettings, type Web, type WebFetchTool, type WebFetchToolResult, type WebFetchToolResultContentError, type WebFetchToolResultContentOneOf, type WebFetchToolResultContentSuccess, type WebSearchResult, type WebSearchResultList, type WebSearchResultLocationCitation, type WebSearchTool, type WebSearchToolResult, type WebSearchToolResultContentOneOf, type WebSearchToolResultError, type WebSearchUserLocation, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type Wix_ai_gatewayV1EditImageRequest, type Wix_ai_gatewayV1EditImageRequestRequestOneOf, type Wix_ai_gatewayV1EditImageResponse, type Wix_ai_gatewayV1EditImageResponseResponseOneOf, type Word, editImage, generateAudio, generateAudioStreamed, generateContentByProject, generateContentByPrompt, generateContentByPromptObject, generateEmbedding, generateImageByProject, generateImageByPrompt, generateImageByPromptObject, generateModeration, generateTextByProject, generateTextByProjectStreamed, generateTextByPrompt, generateTextByPromptObject, generateTextByPromptObjectStreamed, generateTextByPromptStreamed, generateTranscription, getApplicationUsage, getProject, getPrompt, getStatus, pollImageGenerationResult, publishProject, publishPrompt };
|
|
14039
|
+
export { type AccountInfo, type Action, type ActionEvent, type AlignmentInfoInChunk, type AnthropicClaudeMessage, type AnthropicMessage, AnthropicModel, type AnthropicModelWithLiterals, type AnthropicStreamChunk, type AnthropicStreamChunkContentOneOf, type AnthropicStreamChunkMessageDelta, type AnthropicV1ImageUrl, type ApplicationBudgetInfo, type AsyncGenerationConfig, type Background, type BashTool, type Blob, type BuiltInTool, type CacheControl, CacheControlType, type CacheControlTypeWithLiterals, type Candidate, type CandidateCitationMetadata, type CandidateCitationMetadataCitation, type CandidateContent, type CandidateContentPart, type CharLocationCitation, type ChatCompletionChunk, type ChatCompletionChunkChunkChoice, type ChatCompletionChunkChunkChoiceChunkDelta, type ChatCompletionMessage, type ChatCompletionMessageContentPart, type ChatCompletionMessageContentPartContentValueOneOf, type ChatCompletionMessageFunctionWithArgs, type ChatCompletionMessageImageUrlContent, ChatCompletionMessageMessageRole, type ChatCompletionMessageMessageRoleWithLiterals, type ChatCompletionMessageToolCall, ChatCompletionModel, type ChatCompletionModelWithLiterals, type Choice, type ChunkChoice, type ChunkChoiceChunkDelta, type ChunkDelta, type Citation, type CitationMetadata, type CitationTypeOneOf, type CitationsEnabled, ClaudeModel, type ClaudeModelWithLiterals, ClipGuidancePreset, type ClipGuidancePresetWithLiterals, type CodeExecution, type CodeExecutionResult, type CodeExecutionTool, type CodeExecutionToolResult, type CodeExecutionToolResultContentOneOf, type CodeExecutionToolResultError, type CommonContentTaskResponse, type CompletionTokenDetails, type ComputerUse, type ComputerUseTool, type Container, type ContainerUpload, type Content, type ContentBlock, type ContentBlockDelta, type ContentBlockDeltaDeltaOneOf, type ContentBlockLocationCitation, type ContentBlockTypeOneOf, type ContentData, type ContentGenerationFailedEvent, type ContentGenerationRequestedEvent, type ContentGenerationSucceededEvent, type ContentItem, type ContentPart, type ContentPartContentValueOneOf, ContentRole, type ContentRoleWithLiterals, type ConverseContentBlock, type ConverseContentBlockContentOneOf, type ConverseInferenceConfig, type ConverseInputSchema, type ConverseMessage, ConverseModel, type ConverseModelWithLiterals, type ConversePerformanceConfig, type ConverseReasoningContent, type ConverseTool, type ConverseToolResult, type ConverseToolResultContent, type ConverseToolResultContentContentOneOf, type ConverseToolUse, type CreateChatCompletionRequest, type CreateChatCompletionRequestFunctionCallOneOf, type CreateChatCompletionRequestFunctionSignature, type CreateChatCompletionRequestResponseFormat, type CreateChatCompletionRequestTool, type CreateChatCompletionResponse, type CreateChatCompletionResponseChoice, type CreateChatCompletionResponseCompletionTokenDetails, type CreateChatCompletionResponsePromptTokenDetails, type CreateChatCompletionResponseTokenUsage, type CreateContentTaskRequest, type CreateContentTaskResponse, type CreateEmbeddingsRequest, type CreateEmbeddingsResponse, type CreateEmbeddingsResponseEmbeddingUsage, type CreateImageOpenAiRequest, type CreateImageOpenAiResponse, type CreateImageRequest, type CreateImageResponse, type CreateModerationRequest, type CreateModerationResponse, CreatePredictionModel, type CreatePredictionModelWithLiterals, type CreatePredictionRequest, type CreatePredictionRequestInputOneOf, type CreatePredictionResponse, type CreatePredictionResponseTokenUsage, type CreateSpeechRequest, type CreateSpeechResponse, type CreateTranscriptionRequest, CreateTranscriptionRequestResponseFormat, type CreateTranscriptionRequestResponseFormatWithLiterals, type CreateTranscriptionResponse, type CreateVideoRequest, type CreateVideoResponse, type CustomTool, type DatalabOcr, type DatalabOcrOutput, type DocumentContent, type DocumentSource, type DomainEvent, type DomainEventBodyOneOf, type DraftTask, type DynamicRequestConfig, type DynamicRetrievalConfig, DynamicRetrievalConfigMode, type DynamicRetrievalConfigModeWithLiterals, EditAction, type EditActionWithLiterals, type EditImageInput, EditImageModel, type EditImageModelWithLiterals, type EditImageOpenAiRequest, type EditImageOpenAiResponse, type EditImageOptions, type EditImageOptionsRequestOneOf, type EditImageRequest, type EditImageResponse, type EditImageWithPromptRequest, EditImageWithPromptRequestModel, type EditImageWithPromptRequestModelWithLiterals, type EditImageWithPromptResponse, ElevenLabsTextToSpeechModel, type ElevenLabsTextToSpeechModelWithLiterals, EmbeddingEncodingFormat, type EmbeddingEncodingFormatWithLiterals, type EmbeddingInfo, type EmbeddingInfoEmbeddingResultOneOf, type EmbeddingInstance, EmbeddingModel, type EmbeddingModelWithLiterals, type EmbeddingPrediction, type EmbeddingUsage, type EntityCreatedEvent, type EntityDeletedEvent, EntityType, type EntityTypeWithLiterals, type EntityUpdatedEvent, Environment, type EnvironmentWithLiterals, type ErrorInfo, type ExecutableCode, type Expand, type ExperimentalPromptConfig, type Export, type ExtractFromImageMetrics, ExtractFromImageModel, type ExtractFromImageModelWithLiterals, type ExtractFromImageRequest, type ExtractFromImageRequestInputOneOf, type ExtractFromImageResponse, type ExtractFromImageResponseOutputOneOf, type ExtractFromImageResponseTokenUsage, type ExtractFromImageUrls, type FallbackPromptConfig, type FallbackProperties, type FileContent, type FileInput, type FineTuningSpec, FinishReason, type FinishReasonWithLiterals, type Fireworks_proxyV1ChatCompletionMessage, type Fireworks_proxyV1ChatCompletionMessageContentPart, type Fireworks_proxyV1ChatCompletionMessageContentPartContentValueOneOf, type Fireworks_proxyV1ChatCompletionMessageImageUrlContent, Fireworks_proxyV1ChatCompletionMessageMessageRole, type Fireworks_proxyV1ChatCompletionMessageMessageRoleWithLiterals, type FloatEmbedding, type FluxDevControlnet, type FluxPulid, type FrameImage, type FunctionCall, type FunctionCallingConfig, type FunctionDeclaration, type FunctionResponse, type FunctionResponseBlob, type FunctionResponsePart, type FunctionResponsePartDataOneOf, type FunctionSignature, type FunctionWithArgs, type GatewayContentBlock, type GatewayContentBlockTypeOneOf, type GatewayMessageDefinition, GatewayMessageDefinitionRole, type GatewayMessageDefinitionRoleWithLiterals, type GatewayToolDefinition, type GatewayToolDefinitionCustomTool, type GatewayToolDefinitionToolOneOf, GenerateAnImageModel, type GenerateAnImageModelWithLiterals, type GenerateAnImageRequest, type GenerateAnImageResponse, type GenerateAudioOptions, type GenerateAudioOptionsAudioRequestOneOf, type GenerateAudioRequest, type GenerateAudioRequestAudioRequestOneOf, type GenerateAudioResponse, type GenerateAudioResponseAudioResponseOneOf, type GenerateAudioStreamedOptions, type GenerateAudioStreamedOptionsAudioRequestOneOf, type GenerateContentByProjectOptions, type GenerateContentByProjectRequest, type GenerateContentByProjectResponse, type GenerateContentByPromptObjectOptions, type GenerateContentByPromptObjectRequest, type GenerateContentByPromptObjectResponse, type GenerateContentByPromptOptions, type GenerateContentByPromptRequest, type GenerateContentByPromptResponse, type GenerateContentModelResponse, type GenerateContentModelResponseResponseOneOf, type GenerateContentRequest, type GenerateContentResponse, type GenerateCoreRequest, GenerateCoreRequestStylePreset, type GenerateCoreRequestStylePresetWithLiterals, type GenerateCoreResponse, type GenerateEmbeddingOptions, type GenerateEmbeddingOptionsEmbeddingRequestOneOf, type GenerateEmbeddingsRequest, type GenerateEmbeddingsRequestEmbeddingRequestOneOf, type GenerateEmbeddingsResponse, type GenerateEmbeddingsResponseEmbeddingResponseOneOf, type GenerateImageByProjectOptions, type GenerateImageByProjectRequest, type GenerateImageByProjectResponse, type GenerateImageByPromptObjectOptions, type GenerateImageByPromptObjectRequest, type GenerateImageByPromptObjectResponse, type GenerateImageByPromptOptions, type GenerateImageByPromptRequest, type GenerateImageByPromptResponse, GenerateImageMlPlatformModel, type GenerateImageMlPlatformModelWithLiterals, type GenerateImageMlPlatformRequest, type GenerateImageMlPlatformRequestInputOneOf, type GenerateImageMlPlatformResponse, type GenerateImageRequest, type GenerateImageResponse, type GenerateModerationOptions, type GenerateModerationOptionsModerationRequestOneOf, type GenerateModerationRequest, type GenerateModerationRequestModerationRequestOneOf, type GenerateModerationResponse, type GenerateModerationResponseModerationResponseOneOf, type GenerateStableDiffusionRequest, GenerateStableDiffusionRequestOutputFormat, type GenerateStableDiffusionRequestOutputFormatWithLiterals, type GenerateStableDiffusionResponse, type GenerateTextByProjectOptions, type GenerateTextByProjectRequest, type GenerateTextByProjectResponse, type GenerateTextByProjectStreamedOptions, type GenerateTextByPromptObjectOptions, type GenerateTextByPromptObjectRequest, type GenerateTextByPromptObjectResponse, type GenerateTextByPromptObjectStreamedOptions, type GenerateTextByPromptOptions, type GenerateTextByPromptRequest, type GenerateTextByPromptResponse, type GenerateTextByPromptStreamedOptions, type GenerateTranscriptionOptions, type GenerateTranscriptionOptionsTranscriptionRequestOneOf, type GenerateTranscriptionRequest, type GenerateTranscriptionRequestTranscriptionRequestOneOf, type GenerateTranscriptionResponse, type GenerateTranscriptionResponseTranscriptionResponseOneOf, type GenerateVideoInstance, type GenerateVideoParameters, type GenerateVideoRequest, type GenerateVideoResponse, type GeneratedAudioChunk, type GeneratedAudioChunkAudioChunkOneOf, type GeneratedContent, type GeneratedTextChunk, type GeneratedTextChunkModelChunkOneOf, type GeneratedVideo, type GenerationConfig, GenerationMode, type GenerationModeWithLiterals, type GenerationRequestedEvent, type GenerationThinkingConfig, type GetApplicationUsageRequest, type GetApplicationUsageResponse, type GetContentTaskRequest, type GetContentTaskResponse, type GetEmbeddingRequest, type GetEmbeddingResponse, type GetProjectRequest, type GetProjectResponse, type GetPromptOptions, type GetPromptRequest, type GetPromptResponse, type GetResultRequest, type GetResultResponse, type GetStatusRequest, type GetStatusResponse, type GetTaskResultRequest, type GetTaskResultResponse, type GetTaskResultResponseResponseOneOf, type GetVideoResultRequest, type GetVideoResultResponse, type GoogleSearch, type GoogleSearchRetrieval, type GoogleproxyV1AnthropicStreamChunk, type GoogleproxyV1AnthropicStreamChunkContentOneOf, type GoogleproxyV1CacheControl, type GoogleproxyV1ChatCompletionMessage, type GoogleproxyV1ContentBlock, type GoogleproxyV1ContentBlockDelta, type GoogleproxyV1ContentBlockDeltaDeltaOneOf, type GoogleproxyV1ContentBlockTypeOneOf, type GoogleproxyV1ImageUrl, type GoogleproxyV1InputSchema, type GoogleproxyV1McpServer, GoogleproxyV1McpServerType, type GoogleproxyV1McpServerTypeWithLiterals, GoogleproxyV1Model, type GoogleproxyV1ModelWithLiterals, type GoogleproxyV1RedactedThinking, GoogleproxyV1ResponseTypeType, type GoogleproxyV1ResponseTypeTypeWithLiterals, type GoogleproxyV1Text, type GoogleproxyV1Thinking, type GoogleproxyV1ThinkingConfig, type GoogleproxyV1Tool, type GoogleproxyV1ToolChoice, GoogleproxyV1ToolChoiceType, type GoogleproxyV1ToolChoiceTypeWithLiterals, type GoogleproxyV1ToolResult, type GoogleproxyV1ToolUse, type GoogleproxyV1Usage, type GroundingChunk, type GroundingChunkChunkTypeOneOf, type GroundingMetadata, type GroundingSupport, type Guidance, HarmCategory, type HarmCategoryWithLiterals, HarmProbability, type HarmProbabilityWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type ImageConfig, ImageCoreModel, type ImageCoreModelWithLiterals, type ImageData, ImageEditingModel, type ImageEditingModelWithLiterals, type ImageEditingRequest, type ImageEditingResponse, type ImageError, type ImageGenerationFailedEvent, type ImageGenerationRequestedEvent, type ImageGenerationSucceededEvent, type ImageInput, ImageMediaTypeMediaType, type ImageMediaTypeMediaTypeWithLiterals, ImageModel, type ImageModelResponse, type ImageModelResponseResponseOneOf, type ImageModelWithLiterals, type ImageObject, type ImageOutputOptions, ImageQuality, type ImageQualityWithLiterals, ImageSize, type ImageSizeWithLiterals, ImageStableDiffusionModel, type ImageStableDiffusionModelWithLiterals, ImageStyle, type ImageStyleWithLiterals, type ImageUrl, type ImageUrlContent, type ImageUrlInput, type ImageUsage, ImagenModel, type ImagenModelWithLiterals, type IncompleteDetails, type InputSchema, type Inputs, type Instance, type InvokeAnthropicClaudeModelRequest, type InvokeAnthropicClaudeModelRequestTool, type InvokeAnthropicClaudeModelResponse, type InvokeAnthropicModelRequest, type InvokeAnthropicModelResponse, type InvokeChatCompletionRequest, type InvokeChatCompletionRequestResponseFormat, type InvokeChatCompletionRequestResponseFormatFormatDetailsOneOf, type InvokeChatCompletionResponse, type InvokeChatCompletionResponseChoice, type InvokeChatCompletionResponseUsage, type InvokeConverseRequest, type InvokeConverseResponse, type InvokeConverseResponseTokenUsage, type InvokeCustomOpenAiModelRequest, type InvokeCustomOpenAiModelRequestFunctionCallOneOf, type InvokeCustomOpenAiModelRequestFunctionSignature, type InvokeCustomOpenAiModelRequestResponseFormat, type InvokeCustomOpenAiModelRequestTool, type InvokeCustomOpenAiModelResponse, type InvokeCustomOpenAiModelResponseChoice, type InvokeCustomOpenAiModelResponseCompletionTokenDetails, type InvokeCustomOpenAiModelResponsePromptTokenDetails, type InvokeCustomOpenAiModelResponseTokenUsage, type InvokeLlamaModelRequest, type InvokeLlamaModelResponse, type InvokeMlPlatformLlamaModelRequest, type InvokeMlPlatformLlamaModelResponse, type InvokeMlPlatformOpenAIChatCompletionRawRequest, type InvokeMlPlatformOpenAIChatCompletionRawResponse, type JsonSchema, Language, type LanguageWithLiterals, type Lighting, LlamaModel, type LlamaModelWithLiterals, type LoraModelSelect, type LucatacoFlorence2Large, type Margin, type McpServer, type McpServerToolConfiguration, McpServerType, type McpServerTypeWithLiterals, type McpToolUse, type MediaContent, type MediaResolution, MediaResolutionLevel, type MediaResolutionLevelWithLiterals, MediaType, type MediaTypeWithLiterals, type MessageDelta, type MessageEnvelope, MessageRole, MessageRoleRole, type MessageRoleRoleWithLiterals, type MessageRoleWithLiterals, type Metadata, type Metrics, Modality, type ModalityTokenCount, type ModalityWithLiterals, Mode, type ModeWithLiterals, Model, type ModelResponse, type ModelResponseResponseOneOf, type ModelWithLiterals, type ModerationResult, type MultiModalInput, type MultiModalInputContentValueOneOf, OpenAiImageModel, type OpenAiImageModelWithLiterals, type OpenAiImageTokenDetails, type OpenAiResponsesRequest, type OpenAiResponsesResponse, type OpenAiResponsesResponseIncompleteDetails, type OpenaiproxyV1ChatCompletionChunk, type OpenaiproxyV1ChatCompletionMessage, type OpenaiproxyV1ChatCompletionMessageContentPart, type OpenaiproxyV1ChatCompletionMessageContentPartContentValueOneOf, type OpenaiproxyV1ChatCompletionMessageImageUrlContent, OpenaiproxyV1ChatCompletionMessageMessageRole, type OpenaiproxyV1ChatCompletionMessageMessageRoleWithLiterals, type OpenaiproxyV1CreateChatCompletionRequest, type OpenaiproxyV1CreateChatCompletionRequestFunctionCallOneOf, type OpenaiproxyV1CreateChatCompletionRequestResponseFormat, type OpenaiproxyV1CreateChatCompletionResponse, type OpenaiproxyV1CreateChatCompletionResponseChoice, type OpenaiproxyV1CreateChatCompletionResponseTokenUsage, OpenaiproxyV1EmbeddingModel, type OpenaiproxyV1EmbeddingModelWithLiterals, OpenaiproxyV1Model, type OpenaiproxyV1ModelWithLiterals, type OptimizePromptOptions, OutageStatus, type OutageStatusWithLiterals, Outcome, type OutcomeWithLiterals, type OutpaintDirection, type Output, type OutputAnnotation, type OutputAnnotationAnnotationTypeOneOf, type OutputContent, OutputFormat, type OutputFormatWithLiterals, type OutputOptions, type Padding, type PageLocationCitation, type Parameters, type PerceptronIsaac01, type PerplexityImageDescriptor, type PerplexityMessage, PerplexityMessageMessageRole, type PerplexityMessageMessageRoleWithLiterals, PerplexityModel, type PerplexityModelWithLiterals, PersonGeneration, type PersonGenerationWithLiterals, type PollImageGenerationResultOptions, type PollImageGenerationResultOptionsRequestOneOf, type PollImageGenerationResultRequest, type PollImageGenerationResultRequestRequestOneOf, type PollImageGenerationResultResponse, type PollImageGenerationResultResponseResponseOneOf, type PredictParameters, type Prediction, type PredictionMetrics, type PredictionUrls, type Project, type ProjectConfigChangedDomainEvent, type Prompt, type PromptModelRequestOneOf, type PromptTokenDetails, type PronunciationDictionaryLocator, type PrunaaiZImageTurbo, type PublicationDate, type PublishProjectOptions, type PublishProjectRequest, type PublishProjectResponse, type PublishPromptOptions, type PublishPromptRequest, type PublishPromptResponse, type QwenImageLayered, type ReasoningText, type Recraft_proxyV1EditImageRequest, type Recraft_proxyV1EditImageResponse, type RedactedThinking, type RemoveBackgroundRequest, type RemoveBackgroundResponse, type RequestMetadata, type ResponseFormat, type ResponseMetadata, ResponseType, ResponseTypeType, type ResponseTypeTypeWithLiterals, type ResponseTypeWithLiterals, type ResponsesCodeInterpreter, type ResponsesCodeInterpreterContainer, type ResponsesCodeInterpreterContainerAuto, type ResponsesCodeInterpreterContainerContainerTypeOneOf, type ResponsesCodeInterpreterImageOutput, type ResponsesCodeInterpreterLogsOutput, type ResponsesCodeInterpreterOutput, type ResponsesCodeInterpreterOutputOutputTypeOneOf, type ResponsesCodeInterpreterToolCall, type ResponsesFunction, type ResponsesFunctionToolCall, type ResponsesFunctionToolCallOutput, type ResponsesInputItem, type ResponsesInputItemItemOneOf, type ResponsesInputMessage, type ResponsesInputMessageContent, type ResponsesInputMessageContentContentValueOneOf, type ResponsesInputMessageContentFileInput, type ResponsesInputMessageContentImageInput, ResponsesInputMessageResponsesMessageRole, type ResponsesInputMessageResponsesMessageRoleWithLiterals, type ResponsesInputTokensDetails, ResponsesMessageRole, type ResponsesMessageRoleWithLiterals, ResponsesModel, type ResponsesModelWithLiterals, type ResponsesOutput, type ResponsesOutputMessage, type ResponsesOutputMessageOutputContent, type ResponsesOutputOutputOneOf, type ResponsesOutputTokensDetails, type ResponsesReasoning, type ResponsesReasoningContent, type ResponsesReasoningOutput, type ResponsesReasoningSummaryContent, type ResponsesTextFormat, type ResponsesTextFormatFormatOneOf, type ResponsesTextFormatJsonSchema, type ResponsesTokenUsage, type ResponsesTool, type ResponsesToolChoice, type ResponsesToolToolTypeOneOf, type ResponsesWebSearch, type ResponsesWebSearchToolCall, type ResponsesWebSearchToolCallAction, type ResponsesWebSearchUserLocation, type RestoreInfo, type ResultObject, type RetrievalMetadata, type RetrievedContext, type ReveEdit, Role, type RoleWithLiterals, type SafetyAttribute, type SafetyAttributes, type SafetyRating, type SafetySetting, Sampler, type SamplerWithLiterals, type SearchEntryPoint, type SearchResultLocationCitation, type Segment, type Segmentation, type SequentialImageGenerationOptions, type ServerToolUse, type Shadow, type SimpleContentBlock, type SimpleContentBlockTypeOneOf, type SpeechChunk, SpeechModel, type SpeechModelWithLiterals, type SpiGenerationConfig, type Statistics, StylePreset, type StylePresetWithLiterals, type SystemContentBlock, type SystemInstruction, type TaskContent, type TaskError, TaskInput, type TaskInputWithLiterals, TaskType, type TaskTypeWithLiterals, type TaskUsage, type Text, TextBisonModel, type TextBisonModelWithLiterals, type TextBisonPredictRequest, type TextBisonPredictResponse, type TextBisonPrediction, type TextContent, type TextEditorTool, type TextEmbeddingInstance, type TextEmbeddingParameters, type TextGenerationFailedEvent, type TextGenerationSucceededEvent, type TextInstance, type TextPrompt, type TextRemoval, type TextToImageRequest, TextToImageRequestModel, type TextToImageRequestModelWithLiterals, TextToImageRequestStylePreset, type TextToImageRequestStylePresetWithLiterals, type TextToImageResponse, type TextToImageTaskResult, type TextToSpeechChunk, type TextToSpeechRequest, type Thinking, type ThinkingConfig, type ThinkingTextContent, Threshold, type ThresholdWithLiterals, type TimestampGranularities, TimestampGranularity, type TimestampGranularityWithLiterals, type TokenCount, type TokenMetadata, type TokenUsage, type Tool, type ToolCall, type ToolChoice, ToolChoiceType, type ToolChoiceTypeWithLiterals, type ToolConfig, type ToolConfiguration, type ToolResult, type ToolResultContent, type ToolResultContentBlock, type ToolResultContentBlockTypeOneOf, type ToolResultSearchResult, type ToolSpecification, type ToolUse, type ToolUseContent, TranscriptionModel, type TranscriptionModelWithLiterals, Type, type TypeWithLiterals, type UrlCitation, type Usage, type UsageCacheCreation, type UsageMetadata, type UsageServerToolUse, type UserLocation, type UserPerApplicationBudgetInfo, type UserRequestInfo, type V1AnthropicClaudeMessage, type V1AnthropicStreamChunk, type V1AnthropicStreamChunkContentOneOf, type V1AnthropicStreamChunkMessageDelta, type V1CacheControl, V1CacheControlType, type V1CacheControlTypeWithLiterals, type V1ChatCompletionChunk, type V1ChatCompletionChunkChunkChoice, type V1ChatCompletionMessage, type V1ChatCompletionMessageContentPart, type V1ChatCompletionMessageContentPartContentValueOneOf, type V1ChatCompletionMessageFunctionWithArgs, type V1ChatCompletionMessageImageUrlContent, V1ChatCompletionMessageMessageRole, type V1ChatCompletionMessageMessageRoleWithLiterals, type V1ChatCompletionMessageToolCall, type V1Citation, type V1CodeExecutionResult, type V1ContentBlock, type V1ContentBlockDelta, type V1ContentBlockDeltaDeltaOneOf, type V1ContentBlockTypeOneOf, type V1ContentPart, type V1CreateChatCompletionRequest, type V1CreateChatCompletionRequestResponseFormat, type V1CreateChatCompletionRequestTool, type V1CreateChatCompletionResponse, type V1CreateChatCompletionResponseChoice, type V1CreateChatCompletionResponseTokenUsage, type V1CreateEmbeddingsRequest, type V1CreateEmbeddingsResponse, V1EditImageModel, type V1EditImageModelWithLiterals, type V1EditImageRequest, type V1EditImageResponse, V1EmbeddingEncodingFormat, type V1EmbeddingEncodingFormatWithLiterals, type V1EmbeddingInfo, type V1EmbeddingInfoEmbeddingResultOneOf, V1EmbeddingModel, type V1EmbeddingModelWithLiterals, type V1FineTuningSpec, type V1FloatEmbedding, type V1FluxPulid, type V1GenerateImageRequest, type V1GenerateImageResponse, type V1GetResultRequest, type V1GetResultResponse, type V1ImageInput, V1ImageMediaTypeMediaType, type V1ImageMediaTypeMediaTypeWithLiterals, V1ImageModel, type V1ImageModelWithLiterals, type V1ImageObject, type V1ImageUrl, type V1ImageUsage, type V1InputSchema, type V1InvokeAnthropicClaudeModelRequest, type V1InvokeAnthropicClaudeModelResponse, type V1McpServer, type V1McpServerToolConfiguration, V1McpServerType, type V1McpServerTypeWithLiterals, V1MessageRoleRole, type V1MessageRoleRoleWithLiterals, V1Model, type V1ModelWithLiterals, type V1OpenAiResponsesRequest, type V1OpenAiResponsesResponse, type V1OutputAnnotation, type V1OutputAnnotationAnnotationTypeOneOf, type V1RedactedThinking, V1ResponseTypeType, type V1ResponseTypeTypeWithLiterals, type V1ResponsesCodeInterpreter, type V1ResponsesCodeInterpreterContainer, type V1ResponsesCodeInterpreterContainerAuto, type V1ResponsesCodeInterpreterContainerContainerTypeOneOf, type V1ResponsesCodeInterpreterImageOutput, type V1ResponsesCodeInterpreterLogsOutput, type V1ResponsesCodeInterpreterOutput, type V1ResponsesCodeInterpreterOutputOutputTypeOneOf, type V1ResponsesCodeInterpreterToolCall, type V1ResponsesFunction, type V1ResponsesFunctionToolCall, type V1ResponsesFunctionToolCallOutput, type V1ResponsesInputItem, type V1ResponsesInputItemItemOneOf, type V1ResponsesInputMessage, type V1ResponsesInputMessageContent, type V1ResponsesInputMessageContentContentValueOneOf, type V1ResponsesInputTokensDetails, V1ResponsesModel, type V1ResponsesModelWithLiterals, type V1ResponsesOutput, type V1ResponsesOutputMessage, type V1ResponsesOutputOutputOneOf, type V1ResponsesOutputTokensDetails, type V1ResponsesReasoning, type V1ResponsesReasoningContent, type V1ResponsesReasoningOutput, type V1ResponsesReasoningSummaryContent, type V1ResponsesTextFormat, type V1ResponsesTextFormatFormatOneOf, type V1ResponsesTokenUsage, type V1ResponsesTool, type V1ResponsesToolChoice, type V1ResponsesToolToolTypeOneOf, type V1ResponsesWebSearch, type V1ResponsesWebSearchToolCall, type V1Segment, type V1SimpleContentBlock, type V1SimpleContentBlockTypeOneOf, type V1Text, type V1TextToImageRequest, type V1TextToImageResponse, type V1Thinking, type V1ThinkingConfig, type V1TokenUsage, type V1Tool, type V1ToolChoice, V1ToolChoiceType, type V1ToolChoiceTypeWithLiterals, type V1ToolConfig, type V1ToolKindOneOf, type V1ToolResult, type V1ToolUse, type V1UrlCitation, type V1Usage, V1VideoModel, type V1VideoModelWithLiterals, VideoGenModel, type VideoGenModelWithLiterals, type VideoInferenceRequest, type VideoInferenceResponse, type VideoInferenceTaskResult, type VideoInputs, type VideoJob, VideoModel, type VideoModelWithLiterals, type VoiceSettings, type Web, type WebFetchTool, type WebFetchToolResult, type WebFetchToolResultContentError, type WebFetchToolResultContentOneOf, type WebFetchToolResultContentSuccess, type WebSearchResult, type WebSearchResultList, type WebSearchResultLocationCitation, type WebSearchTool, type WebSearchToolResult, type WebSearchToolResultContentOneOf, type WebSearchToolResultError, type WebSearchUserLocation, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type Wix_ai_gatewayV1EditImageRequest, type Wix_ai_gatewayV1EditImageRequestRequestOneOf, type Wix_ai_gatewayV1EditImageResponse, type Wix_ai_gatewayV1EditImageResponseResponseOneOf, type Word, editImage, generateAudio, generateAudioStreamed, generateContentByProject, generateContentByPrompt, generateContentByPromptObject, generateEmbedding, generateImageByProject, generateImageByPrompt, generateImageByPromptObject, generateModeration, generateTextByProject, generateTextByProjectStreamed, generateTextByPrompt, generateTextByPromptObject, generateTextByPromptObjectStreamed, generateTextByPromptStreamed, generateTranscription, getApplicationUsage, getProject, getPrompt, getStatus, pollImageGenerationResult, publishProject, publishPrompt };
|