@openrouter/sdk 0.9.11 → 0.10.2
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/FUNCTIONS.md +2 -1
- package/_speakeasy/.github/action-inputs-config.json +4 -0
- package/esm/funcs/analyticsGetUserActivity.js +2 -1
- package/esm/funcs/apiKeysCreate.js +2 -1
- package/esm/funcs/apiKeysDelete.js +2 -1
- package/esm/funcs/apiKeysGet.js +2 -1
- package/esm/funcs/apiKeysGetCurrentKeyMetadata.js +2 -1
- package/esm/funcs/apiKeysList.js +2 -1
- package/esm/funcs/apiKeysUpdate.js +2 -1
- package/esm/funcs/betaResponsesSend.js +2 -1
- package/esm/funcs/call-model.d.ts +19 -70
- package/esm/funcs/call-model.js +29 -71
- package/esm/funcs/chatSend.js +2 -1
- package/esm/funcs/creditsCreateCoinbaseCharge.js +2 -1
- package/esm/funcs/creditsGetCredits.js +2 -1
- package/esm/funcs/embeddingsGenerate.js +2 -1
- package/esm/funcs/embeddingsListModels.js +2 -1
- package/esm/funcs/endpointsList.js +2 -1
- package/esm/funcs/endpointsListZdrEndpoints.js +2 -1
- package/esm/funcs/generationsGetGeneration.js +2 -1
- package/esm/funcs/guardrailsBulkAssignKeys.js +2 -1
- package/esm/funcs/guardrailsBulkAssignMembers.js +2 -1
- package/esm/funcs/guardrailsBulkUnassignKeys.js +2 -1
- package/esm/funcs/guardrailsBulkUnassignMembers.js +2 -1
- package/esm/funcs/guardrailsCreate.js +2 -1
- package/esm/funcs/guardrailsDelete.js +2 -1
- package/esm/funcs/guardrailsGet.js +2 -1
- package/esm/funcs/guardrailsList.js +2 -1
- package/esm/funcs/guardrailsListGuardrailKeyAssignments.js +2 -1
- package/esm/funcs/guardrailsListGuardrailMemberAssignments.js +2 -1
- package/esm/funcs/guardrailsListKeyAssignments.js +2 -1
- package/esm/funcs/guardrailsListMemberAssignments.js +2 -1
- package/esm/funcs/guardrailsUpdate.js +2 -1
- package/esm/funcs/modelsCount.d.ts +1 -1
- package/esm/funcs/modelsCount.js +9 -4
- package/esm/funcs/modelsList.js +3 -1
- package/esm/funcs/modelsListForUser.js +2 -1
- package/esm/funcs/oAuthCreateAuthCode.d.ts +1 -1
- package/esm/funcs/oAuthCreateAuthCode.js +4 -3
- package/esm/funcs/oAuthExchangeAuthCodeForAPIKey.js +2 -1
- package/esm/funcs/providersList.js +2 -1
- package/esm/index.d.ts +22 -23
- package/esm/index.js +20 -17
- package/esm/lib/anthropic-compat.d.ts +2 -1
- package/esm/lib/anthropic-compat.js +1 -2
- package/esm/lib/async-params.d.ts +19 -5
- package/esm/lib/async-params.js +5 -1
- package/esm/lib/chat-compat.d.ts +1 -1
- package/esm/lib/chat-compat.js +1 -2
- package/esm/lib/claude-type-guards.d.ts +2 -2
- package/esm/lib/config.d.ts +8 -10
- package/esm/lib/config.js +2 -2
- package/esm/lib/conversation-state.d.ts +1 -1
- package/esm/lib/conversation-state.js +35 -32
- package/esm/lib/env.d.ts +6 -2
- package/esm/lib/env.js +7 -3
- package/esm/lib/model-result.d.ts +73 -17
- package/esm/lib/model-result.js +329 -125
- package/esm/lib/sdks.d.ts +1 -1
- package/esm/lib/sdks.js +8 -28
- package/esm/lib/stream-transformers.d.ts +5 -4
- package/esm/lib/stream-transformers.js +24 -29
- package/esm/lib/stream-type-guards.js +8 -32
- package/esm/lib/tool-context.d.ts +68 -0
- package/esm/lib/tool-context.js +175 -0
- package/esm/lib/tool-executor.d.ts +9 -5
- package/esm/lib/tool-executor.js +26 -16
- package/esm/lib/tool-orchestrator.d.ts +2 -2
- package/esm/lib/tool-types.d.ts +101 -14
- package/esm/lib/tool-types.js +17 -0
- package/esm/lib/tool.d.ts +49 -60
- package/esm/lib/tool.js +15 -19
- package/esm/lib/turn-context.d.ts +1 -1
- package/esm/models/assistantmessage.d.ts +6 -0
- package/esm/models/assistantmessage.js +3 -0
- package/esm/models/chatcompletionaudiooutput.d.ts +38 -0
- package/esm/models/chatcompletionaudiooutput.js +36 -0
- package/esm/models/chatgenerationparams.d.ts +75 -6
- package/esm/models/chatgenerationparams.js +42 -0
- package/esm/models/chatmessagecontentitem.d.ts +3 -2
- package/esm/models/chatmessagecontentitem.js +3 -0
- package/esm/models/chatmessagecontentitemcachecontrol.d.ts +5 -5
- package/esm/models/chatmessagecontentitemcachecontrol.js +5 -7
- package/esm/models/chatmessagecontentitemfile.d.ts +57 -0
- package/esm/models/chatmessagecontentitemfile.js +59 -0
- package/esm/models/chatmessagetokenlogprobs.d.ts +1 -1
- package/esm/models/chatmessagetokenlogprobs.js +2 -1
- package/esm/models/chatresponse.d.ts +1 -1
- package/esm/models/chatresponse.js +1 -1
- package/esm/models/chatstreamingmessagechunk.d.ts +2 -0
- package/esm/models/chatstreamingmessagechunk.js +2 -0
- package/esm/models/chatstreamingresponsechunk.d.ts +1 -1
- package/esm/models/chatstreamingresponsechunk.js +1 -1
- package/esm/models/compoundfilter.d.ts +36 -0
- package/esm/models/compoundfilter.js +32 -0
- package/esm/models/conflictresponseerrordata.d.ts +17 -0
- package/esm/models/conflictresponseerrordata.js +16 -0
- package/esm/models/contextcompressionengine.d.ts +15 -0
- package/esm/models/contextcompressionengine.js +14 -0
- package/esm/models/datetimeservertool.d.ts +30 -0
- package/esm/models/datetimeservertool.js +22 -0
- package/esm/models/defaultparameters.d.ts +3 -0
- package/esm/models/defaultparameters.js +6 -0
- package/esm/models/errors/conflictresponseerror.d.ts +33 -0
- package/esm/models/errors/conflictresponseerror.js +42 -0
- package/esm/models/errors/index.d.ts +1 -0
- package/esm/models/errors/index.js +1 -0
- package/esm/models/index.d.ts +23 -4
- package/esm/models/index.js +23 -4
- package/esm/models/openairesponsesinputunion.d.ts +32 -1
- package/esm/models/openairesponsesinputunion.js +53 -1
- package/esm/models/openresponsesapplypatchtool.d.ts +20 -0
- package/esm/models/openresponsesapplypatchtool.js +21 -0
- package/esm/models/openresponsescodeinterpretertool.d.ts +68 -0
- package/esm/models/openresponsescodeinterpretertool.js +85 -0
- package/esm/models/openresponsescomputertool.d.ts +39 -0
- package/esm/models/openresponsescomputertool.js +50 -0
- package/esm/models/openresponsescustomtool.d.ts +75 -0
- package/esm/models/openresponsescustomtool.js +95 -0
- package/esm/models/openresponseseasyinputmessage.d.ts +30 -4
- package/esm/models/openresponseseasyinputmessage.js +28 -2
- package/esm/models/openresponsesfilesearchtool.d.ts +111 -0
- package/esm/models/openresponsesfilesearchtool.js +180 -0
- package/esm/models/openresponsesfunctioncalloutput.d.ts +46 -7
- package/esm/models/openresponsesfunctioncalloutput.js +56 -4
- package/esm/models/openresponsesfunctionshelltool.d.ts +20 -0
- package/esm/models/openresponsesfunctionshelltool.js +21 -0
- package/esm/models/openresponsesimagegenerationtool.d.ts +125 -0
- package/esm/models/openresponsesimagegenerationtool.js +153 -0
- package/esm/models/openresponsesinputmessageitem.d.ts +2 -2
- package/esm/models/openresponsesinputmessageitem.js +2 -2
- package/esm/models/openresponsesinputunion.d.ts +207 -0
- package/esm/models/openresponsesinputunion.js +225 -0
- package/esm/models/openresponseslocalshelltool.d.ts +20 -0
- package/esm/models/openresponseslocalshelltool.js +21 -0
- package/esm/models/openresponsesmcptool.d.ts +128 -0
- package/esm/models/openresponsesmcptool.js +173 -0
- package/esm/models/openresponsesnonstreamingresponse.d.ts +11 -2
- package/esm/models/openresponsesnonstreamingresponse.js +27 -0
- package/esm/models/openresponsesrequest.d.ts +53 -11
- package/esm/models/openresponsesrequest.js +51 -2
- package/esm/models/openresponsesstreamevent.d.ts +52 -4
- package/esm/models/openresponsesstreamevent.js +54 -3
- package/esm/models/openresponseswebsearch20250826tool.d.ts +29 -0
- package/esm/models/openresponseswebsearch20250826tool.js +23 -0
- package/esm/models/openresponseswebsearchcallcompleted.d.ts +16 -0
- package/esm/models/openresponseswebsearchcallcompleted.js +24 -0
- package/esm/models/openresponseswebsearchcallinprogress.d.ts +16 -0
- package/esm/models/openresponseswebsearchcallinprogress.js +24 -0
- package/esm/models/openresponseswebsearchcallsearching.d.ts +16 -0
- package/esm/models/openresponseswebsearchcallsearching.js +24 -0
- package/esm/models/openresponseswebsearchpreview20250311tool.d.ts +44 -0
- package/esm/models/openresponseswebsearchpreview20250311tool.js +51 -0
- package/esm/models/openresponseswebsearchpreviewtool.d.ts +44 -0
- package/esm/models/openresponseswebsearchpreviewtool.js +47 -0
- package/esm/models/openresponseswebsearchtool.d.ts +29 -0
- package/esm/models/openresponseswebsearchtool.js +23 -0
- package/esm/models/operations/bulkassignkeystoguardrail.d.ts +16 -3
- package/esm/models/operations/bulkassignkeystoguardrail.js +2 -2
- package/esm/models/operations/bulkassignmemberstoguardrail.d.ts +16 -3
- package/esm/models/operations/bulkassignmemberstoguardrail.js +2 -2
- package/esm/models/operations/bulkunassignkeysfromguardrail.d.ts +16 -3
- package/esm/models/operations/bulkunassignkeysfromguardrail.js +2 -2
- package/esm/models/operations/bulkunassignmembersfromguardrail.d.ts +16 -3
- package/esm/models/operations/bulkunassignmembersfromguardrail.js +2 -2
- package/esm/models/operations/createauthkeyscode.d.ts +16 -3
- package/esm/models/operations/createauthkeyscode.js +2 -2
- package/esm/models/operations/createcoinbasecharge.d.ts +16 -3
- package/esm/models/operations/createcoinbasecharge.js +2 -2
- package/esm/models/operations/createembeddings.d.ts +16 -3
- package/esm/models/operations/createembeddings.js +2 -2
- package/esm/models/operations/createguardrail.d.ts +25 -3
- package/esm/models/operations/createguardrail.js +6 -2
- package/esm/models/operations/createkeys.d.ts +16 -3
- package/esm/models/operations/createkeys.js +2 -2
- package/esm/models/operations/createresponses.d.ts +16 -3
- package/esm/models/operations/createresponses.js +2 -2
- package/esm/models/operations/deleteguardrail.d.ts +16 -3
- package/esm/models/operations/deleteguardrail.js +2 -2
- package/esm/models/operations/deletekeys.d.ts +16 -3
- package/esm/models/operations/deletekeys.js +2 -2
- package/esm/models/operations/exchangeauthcodeforapikey.d.ts +16 -3
- package/esm/models/operations/exchangeauthcodeforapikey.js +2 -2
- package/esm/models/operations/getcredits.d.ts +16 -3
- package/esm/models/operations/getcredits.js +2 -2
- package/esm/models/operations/getcurrentkey.d.ts +16 -3
- package/esm/models/operations/getcurrentkey.js +2 -2
- package/esm/models/operations/getgeneration.d.ts +25 -3
- package/esm/models/operations/getgeneration.js +7 -2
- package/esm/models/operations/getguardrail.d.ts +20 -3
- package/esm/models/operations/getguardrail.js +4 -2
- package/esm/models/operations/getkey.d.ts +16 -3
- package/esm/models/operations/getkey.js +2 -2
- package/esm/models/operations/getmodels.d.ts +21 -3
- package/esm/models/operations/getmodels.js +4 -2
- package/esm/models/operations/getuseractivity.d.ts +16 -3
- package/esm/models/operations/getuseractivity.js +2 -2
- package/esm/models/operations/list.d.ts +16 -3
- package/esm/models/operations/list.js +2 -2
- package/esm/models/operations/listembeddingsmodels.d.ts +16 -3
- package/esm/models/operations/listembeddingsmodels.js +2 -2
- package/esm/models/operations/listendpoints.d.ts +16 -3
- package/esm/models/operations/listendpoints.js +2 -2
- package/esm/models/operations/listendpointszdr.d.ts +16 -3
- package/esm/models/operations/listendpointszdr.js +2 -2
- package/esm/models/operations/listguardrailkeyassignments.d.ts +16 -3
- package/esm/models/operations/listguardrailkeyassignments.js +2 -2
- package/esm/models/operations/listguardrailmemberassignments.d.ts +16 -3
- package/esm/models/operations/listguardrailmemberassignments.js +2 -2
- package/esm/models/operations/listguardrails.d.ts +20 -3
- package/esm/models/operations/listguardrails.js +4 -2
- package/esm/models/operations/listkeyassignments.d.ts +16 -3
- package/esm/models/operations/listkeyassignments.js +2 -2
- package/esm/models/operations/listmemberassignments.d.ts +16 -3
- package/esm/models/operations/listmemberassignments.js +2 -2
- package/esm/models/operations/listmodelscount.d.ts +21 -3
- package/esm/models/operations/listmodelscount.js +4 -2
- package/esm/models/operations/listmodelsuser.d.ts +16 -3
- package/esm/models/operations/listmodelsuser.js +2 -2
- package/esm/models/operations/listproviders.d.ts +16 -3
- package/esm/models/operations/listproviders.js +2 -2
- package/esm/models/operations/sendchatcompletionrequest.d.ts +16 -3
- package/esm/models/operations/sendchatcompletionrequest.js +2 -2
- package/esm/models/operations/updateguardrail.d.ts +25 -3
- package/esm/models/operations/updateguardrail.js +6 -2
- package/esm/models/operations/updatekeys.d.ts +16 -3
- package/esm/models/operations/updatekeys.js +2 -2
- package/esm/models/outputmessage.d.ts +23 -0
- package/esm/models/outputmessage.js +24 -0
- package/esm/models/outputmodality.d.ts +1 -0
- package/esm/models/outputmodality.js +1 -0
- package/esm/models/providername.d.ts +1 -0
- package/esm/models/providername.js +1 -0
- package/esm/models/providerpreferences.d.ts +4 -0
- package/esm/models/providerpreferences.js +4 -0
- package/esm/models/providersort.d.ts +1 -0
- package/esm/models/providersort.js +1 -0
- package/esm/models/providersortconfig.d.ts +1 -0
- package/esm/models/providersortconfig.js +1 -0
- package/esm/models/responseoutputtext.d.ts +8 -8
- package/esm/models/responseoutputtext.js +10 -9
- package/esm/models/responsesoutputitem.d.ts +2 -13
- package/esm/models/responsesoutputitem.js +8 -6
- package/esm/models/responsesoutputitemreasoning.d.ts +2 -31
- package/esm/models/responsesoutputitemreasoning.js +2 -44
- package/esm/models/responsesoutputmessage.d.ts +24 -32
- package/esm/models/responsesoutputmessage.js +26 -47
- package/esm/models/responsesservertooloutput.d.ts +42 -0
- package/esm/models/responsesservertooloutput.js +44 -0
- package/esm/models/responseswebsearchcalloutput.d.ts +90 -5
- package/esm/models/responseswebsearchcalloutput.js +113 -5
- package/esm/models/responseswebsearchservertool.d.ts +35 -0
- package/esm/models/responseswebsearchservertool.js +28 -0
- package/esm/models/tooldefinitionjson.d.ts +38 -20
- package/esm/models/tooldefinitionjson.js +22 -11
- package/esm/models/websearchengine.d.ts +2 -0
- package/esm/models/websearchengine.js +2 -0
- package/esm/models/websearchservertool.d.ts +116 -0
- package/esm/models/websearchservertool.js +77 -0
- package/esm/models/websearchshorthand.d.ts +215 -0
- package/esm/models/websearchshorthand.js +138 -0
- package/esm/sdk/sdk.d.ts +4 -1
- package/esm/sdk/sdk.js +0 -1
- package/esm/types/index.d.ts +0 -2
- package/esm/types/index.js +0 -1
- package/jsr.json +1 -1
- package/package.json +11 -6
- package/turbo.json +10 -0
- package/esm/models/openresponsesinput.d.ts +0 -28
- package/esm/models/openresponsesinput.js +0 -54
- package/esm/models/openresponseslogprobs.d.ts +0 -16
- package/esm/models/openresponseslogprobs.js +0 -22
- package/esm/models/openresponsestoplogprobs.d.ts +0 -14
- package/esm/models/openresponsestoplogprobs.js +0 -15
|
@@ -6,6 +6,7 @@ import * as z from "zod/v4";
|
|
|
6
6
|
import { remap as remap$ } from "../lib/primitives.js";
|
|
7
7
|
import { safeParse } from "../lib/schemas.js";
|
|
8
8
|
import { AssistantMessageImages$inboundSchema, AssistantMessageImages$outboundSchema, } from "./assistantmessageimages.js";
|
|
9
|
+
import { ChatCompletionAudioOutput$inboundSchema, ChatCompletionAudioOutput$outboundSchema, } from "./chatcompletionaudiooutput.js";
|
|
9
10
|
import { ChatMessageContentItem$inboundSchema, ChatMessageContentItem$outboundSchema, } from "./chatmessagecontentitem.js";
|
|
10
11
|
import { ChatMessageToolCall$inboundSchema, ChatMessageToolCall$outboundSchema, } from "./chatmessagetoolcall.js";
|
|
11
12
|
import { ReasoningDetailUnion$inboundSchema, ReasoningDetailUnion$outboundSchema, } from "./reasoningdetailunion.js";
|
|
@@ -48,6 +49,7 @@ export const AssistantMessage$inboundSchema = z.object({
|
|
|
48
49
|
reasoning: z.nullable(z.string()).optional(),
|
|
49
50
|
reasoning_details: z.array(ReasoningDetailUnion$inboundSchema).optional(),
|
|
50
51
|
images: z.array(AssistantMessageImages$inboundSchema).optional(),
|
|
52
|
+
audio: ChatCompletionAudioOutput$inboundSchema.optional(),
|
|
51
53
|
}).transform((v) => {
|
|
52
54
|
return remap$(v, {
|
|
53
55
|
"tool_calls": "toolCalls",
|
|
@@ -68,6 +70,7 @@ export const AssistantMessage$outboundSchema = z.object({
|
|
|
68
70
|
reasoning: z.nullable(z.string()).optional(),
|
|
69
71
|
reasoningDetails: z.array(ReasoningDetailUnion$outboundSchema).optional(),
|
|
70
72
|
images: z.array(AssistantMessageImages$outboundSchema).optional(),
|
|
73
|
+
audio: ChatCompletionAudioOutput$outboundSchema.optional(),
|
|
71
74
|
}).transform((v) => {
|
|
72
75
|
return remap$(v, {
|
|
73
76
|
toolCalls: "tool_calls",
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as z from "zod/v4";
|
|
2
|
+
import { Result as SafeParseResult } from "../types/fp.js";
|
|
3
|
+
import { SDKValidationError } from "./errors/sdkvalidationerror.js";
|
|
4
|
+
/**
|
|
5
|
+
* Audio output data or reference
|
|
6
|
+
*/
|
|
7
|
+
export type ChatCompletionAudioOutput = {
|
|
8
|
+
/**
|
|
9
|
+
* Audio output identifier
|
|
10
|
+
*/
|
|
11
|
+
id?: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* Audio expiration timestamp
|
|
14
|
+
*/
|
|
15
|
+
expiresAt?: number | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* Base64 encoded audio data
|
|
18
|
+
*/
|
|
19
|
+
data?: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* Audio transcript
|
|
22
|
+
*/
|
|
23
|
+
transcript?: string | undefined;
|
|
24
|
+
};
|
|
25
|
+
/** @internal */
|
|
26
|
+
export declare const ChatCompletionAudioOutput$inboundSchema: z.ZodType<ChatCompletionAudioOutput, unknown>;
|
|
27
|
+
/** @internal */
|
|
28
|
+
export type ChatCompletionAudioOutput$Outbound = {
|
|
29
|
+
id?: string | undefined;
|
|
30
|
+
expires_at?: number | undefined;
|
|
31
|
+
data?: string | undefined;
|
|
32
|
+
transcript?: string | undefined;
|
|
33
|
+
};
|
|
34
|
+
/** @internal */
|
|
35
|
+
export declare const ChatCompletionAudioOutput$outboundSchema: z.ZodType<ChatCompletionAudioOutput$Outbound, ChatCompletionAudioOutput>;
|
|
36
|
+
export declare function chatCompletionAudioOutputToJSON(chatCompletionAudioOutput: ChatCompletionAudioOutput): string;
|
|
37
|
+
export declare function chatCompletionAudioOutputFromJSON(jsonString: string): SafeParseResult<ChatCompletionAudioOutput, SDKValidationError>;
|
|
38
|
+
//# sourceMappingURL=chatcompletionaudiooutput.d.ts.map
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
* @generated-id: 125d1fe30400
|
|
4
|
+
*/
|
|
5
|
+
import * as z from "zod/v4";
|
|
6
|
+
import { remap as remap$ } from "../lib/primitives.js";
|
|
7
|
+
import { safeParse } from "../lib/schemas.js";
|
|
8
|
+
/** @internal */
|
|
9
|
+
export const ChatCompletionAudioOutput$inboundSchema = z.object({
|
|
10
|
+
id: z.string().optional(),
|
|
11
|
+
expires_at: z.number().optional(),
|
|
12
|
+
data: z.string().optional(),
|
|
13
|
+
transcript: z.string().optional(),
|
|
14
|
+
}).transform((v) => {
|
|
15
|
+
return remap$(v, {
|
|
16
|
+
"expires_at": "expiresAt",
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
/** @internal */
|
|
20
|
+
export const ChatCompletionAudioOutput$outboundSchema = z.object({
|
|
21
|
+
id: z.string().optional(),
|
|
22
|
+
expiresAt: z.number().optional(),
|
|
23
|
+
data: z.string().optional(),
|
|
24
|
+
transcript: z.string().optional(),
|
|
25
|
+
}).transform((v) => {
|
|
26
|
+
return remap$(v, {
|
|
27
|
+
expiresAt: "expires_at",
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
export function chatCompletionAudioOutputToJSON(chatCompletionAudioOutput) {
|
|
31
|
+
return JSON.stringify(ChatCompletionAudioOutput$outboundSchema.parse(chatCompletionAudioOutput));
|
|
32
|
+
}
|
|
33
|
+
export function chatCompletionAudioOutputFromJSON(jsonString) {
|
|
34
|
+
return safeParse(jsonString, (x) => ChatCompletionAudioOutput$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ChatCompletionAudioOutput' from JSON`);
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=chatcompletionaudiooutput.js.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as z from "zod/v4";
|
|
2
2
|
import { ClosedEnum, OpenEnum } from "../types/enums.js";
|
|
3
3
|
import { ChatStreamOptions, ChatStreamOptions$Outbound } from "./chatstreamoptions.js";
|
|
4
|
+
import { ContextCompressionEngine } from "./contextcompressionengine.js";
|
|
4
5
|
import { DataCollection } from "./datacollection.js";
|
|
5
6
|
import { DebugOptions, DebugOptions$Outbound } from "./debugoptions.js";
|
|
6
7
|
import { Message, Message$Outbound } from "./message.js";
|
|
@@ -24,12 +25,14 @@ export declare const ChatGenerationParamsSortEnum: {
|
|
|
24
25
|
readonly Price: "price";
|
|
25
26
|
readonly Throughput: "throughput";
|
|
26
27
|
readonly Latency: "latency";
|
|
28
|
+
readonly Exacto: "exacto";
|
|
27
29
|
};
|
|
28
30
|
export type ChatGenerationParamsSortEnum = OpenEnum<typeof ChatGenerationParamsSortEnum>;
|
|
29
31
|
export declare const ChatGenerationParamsProviderSortConfigEnum: {
|
|
30
32
|
readonly Price: "price";
|
|
31
33
|
readonly Throughput: "throughput";
|
|
32
34
|
readonly Latency: "latency";
|
|
35
|
+
readonly Exacto: "exacto";
|
|
33
36
|
};
|
|
34
37
|
export type ChatGenerationParamsProviderSortConfigEnum = ClosedEnum<typeof ChatGenerationParamsProviderSortConfigEnum>;
|
|
35
38
|
/**
|
|
@@ -39,6 +42,7 @@ export declare const ChatGenerationParamsBy: {
|
|
|
39
42
|
readonly Price: "price";
|
|
40
43
|
readonly Throughput: "throughput";
|
|
41
44
|
readonly Latency: "latency";
|
|
45
|
+
readonly Exacto: "exacto";
|
|
42
46
|
};
|
|
43
47
|
/**
|
|
44
48
|
* The provider sorting strategy (price, throughput, latency)
|
|
@@ -73,6 +77,7 @@ export declare const ChatGenerationParamsProviderSort: {
|
|
|
73
77
|
readonly Price: "price";
|
|
74
78
|
readonly Throughput: "throughput";
|
|
75
79
|
readonly Latency: "latency";
|
|
80
|
+
readonly Exacto: "exacto";
|
|
76
81
|
};
|
|
77
82
|
/**
|
|
78
83
|
* The provider sorting strategy (price, throughput, latency)
|
|
@@ -158,6 +163,17 @@ export type ChatGenerationParamsProvider = {
|
|
|
158
163
|
*/
|
|
159
164
|
preferredMaxLatency?: PreferredMaxLatency | null | undefined;
|
|
160
165
|
};
|
|
166
|
+
export type ChatGenerationParamsPluginContextCompression = {
|
|
167
|
+
id: "context-compression";
|
|
168
|
+
/**
|
|
169
|
+
* Set to false to disable the context-compression plugin for this request. Defaults to true.
|
|
170
|
+
*/
|
|
171
|
+
enabled?: boolean | undefined;
|
|
172
|
+
/**
|
|
173
|
+
* The compression engine to use. Defaults to "middle-out".
|
|
174
|
+
*/
|
|
175
|
+
engine?: ContextCompressionEngine | undefined;
|
|
176
|
+
};
|
|
161
177
|
export type ChatGenerationParamsPluginResponseHealing = {
|
|
162
178
|
id: "response-healing";
|
|
163
179
|
/**
|
|
@@ -188,6 +204,14 @@ export type ChatGenerationParamsPluginWeb = {
|
|
|
188
204
|
* The search engine to use for web search.
|
|
189
205
|
*/
|
|
190
206
|
engine?: WebSearchEngine | undefined;
|
|
207
|
+
/**
|
|
208
|
+
* A list of domains to restrict web search results to. Supports wildcards (e.g. "*.substack.com") and path filtering (e.g. "openai.com/blog").
|
|
209
|
+
*/
|
|
210
|
+
includeDomains?: Array<string> | undefined;
|
|
211
|
+
/**
|
|
212
|
+
* A list of domains to exclude from web search results. Supports wildcards (e.g. "*.substack.com") and path filtering (e.g. "openai.com/blog").
|
|
213
|
+
*/
|
|
214
|
+
excludeDomains?: Array<string> | undefined;
|
|
191
215
|
};
|
|
192
216
|
export type ChatGenerationParamsPluginModeration = {
|
|
193
217
|
id: "moderation";
|
|
@@ -203,7 +227,7 @@ export type ChatGenerationParamsPluginAutoRouter = {
|
|
|
203
227
|
*/
|
|
204
228
|
allowedModels?: Array<string> | undefined;
|
|
205
229
|
};
|
|
206
|
-
export type ChatGenerationParamsPluginUnion = ChatGenerationParamsPluginAutoRouter | ChatGenerationParamsPluginModeration | ChatGenerationParamsPluginWeb | ChatGenerationParamsPluginFileParser | ChatGenerationParamsPluginResponseHealing;
|
|
230
|
+
export type ChatGenerationParamsPluginUnion = ChatGenerationParamsPluginAutoRouter | ChatGenerationParamsPluginModeration | ChatGenerationParamsPluginWeb | ChatGenerationParamsPluginFileParser | ChatGenerationParamsPluginResponseHealing | ChatGenerationParamsPluginContextCompression;
|
|
207
231
|
/**
|
|
208
232
|
* Metadata for observability and tracing. Known keys (trace_id, trace_name, span_name, generation_name, parent_span_id) have special handling. Additional keys are passed through as custom metadata to configured broadcast destinations.
|
|
209
233
|
*/
|
|
@@ -254,8 +278,25 @@ export type ChatGenerationParamsImageConfig = string | number | Array<any | null
|
|
|
254
278
|
export declare const Modality: {
|
|
255
279
|
readonly Text: "text";
|
|
256
280
|
readonly Image: "image";
|
|
281
|
+
readonly Audio: "audio";
|
|
257
282
|
};
|
|
258
283
|
export type Modality = OpenEnum<typeof Modality>;
|
|
284
|
+
export declare const ChatGenerationParamsType: {
|
|
285
|
+
readonly Ephemeral: "ephemeral";
|
|
286
|
+
};
|
|
287
|
+
export type ChatGenerationParamsType = ClosedEnum<typeof ChatGenerationParamsType>;
|
|
288
|
+
export declare const ChatGenerationParamsTtl: {
|
|
289
|
+
readonly Fivem: "5m";
|
|
290
|
+
readonly Oneh: "1h";
|
|
291
|
+
};
|
|
292
|
+
export type ChatGenerationParamsTtl = OpenEnum<typeof ChatGenerationParamsTtl>;
|
|
293
|
+
/**
|
|
294
|
+
* Enable automatic prompt caching. When set, the system automatically applies cache breakpoints to the last cacheable block in the request. Currently supported for Anthropic Claude models.
|
|
295
|
+
*/
|
|
296
|
+
export type CacheControl = {
|
|
297
|
+
type: ChatGenerationParamsType;
|
|
298
|
+
ttl?: ChatGenerationParamsTtl | undefined;
|
|
299
|
+
};
|
|
259
300
|
/**
|
|
260
301
|
* Chat completion request parameters
|
|
261
302
|
*/
|
|
@@ -267,7 +308,7 @@ export type ChatGenerationParams = {
|
|
|
267
308
|
/**
|
|
268
309
|
* Plugins you want to enable for this request, including their settings.
|
|
269
310
|
*/
|
|
270
|
-
plugins?: Array<ChatGenerationParamsPluginAutoRouter | ChatGenerationParamsPluginModeration | ChatGenerationParamsPluginWeb | ChatGenerationParamsPluginFileParser | ChatGenerationParamsPluginResponseHealing> | undefined;
|
|
311
|
+
plugins?: Array<ChatGenerationParamsPluginAutoRouter | ChatGenerationParamsPluginModeration | ChatGenerationParamsPluginWeb | ChatGenerationParamsPluginFileParser | ChatGenerationParamsPluginResponseHealing | ChatGenerationParamsPluginContextCompression> | undefined;
|
|
271
312
|
/**
|
|
272
313
|
* Unique user identifier
|
|
273
314
|
*/
|
|
@@ -315,7 +356,7 @@ export type ChatGenerationParams = {
|
|
|
315
356
|
*/
|
|
316
357
|
maxCompletionTokens?: number | null | undefined;
|
|
317
358
|
/**
|
|
318
|
-
* Maximum tokens (deprecated, use max_completion_tokens)
|
|
359
|
+
* Maximum tokens (deprecated, use max_completion_tokens). Note: some providers enforce a minimum of 16.
|
|
319
360
|
*/
|
|
320
361
|
maxTokens?: number | null | undefined;
|
|
321
362
|
/**
|
|
@@ -380,9 +421,13 @@ export type ChatGenerationParams = {
|
|
|
380
421
|
[k: string]: string | number | Array<any | null>;
|
|
381
422
|
} | undefined;
|
|
382
423
|
/**
|
|
383
|
-
* Output modalities for the response. Supported values are "text" and "
|
|
424
|
+
* Output modalities for the response. Supported values are "text", "image", and "audio".
|
|
384
425
|
*/
|
|
385
426
|
modalities?: Array<Modality> | undefined;
|
|
427
|
+
/**
|
|
428
|
+
* Enable automatic prompt caching. When set, the system automatically applies cache breakpoints to the last cacheable block in the request. Currently supported for Anthropic Claude models.
|
|
429
|
+
*/
|
|
430
|
+
cacheControl?: CacheControl | undefined;
|
|
386
431
|
};
|
|
387
432
|
/** @internal */
|
|
388
433
|
export type ChatGenerationParamsOrder$Outbound = string | string;
|
|
@@ -458,6 +503,15 @@ export type ChatGenerationParamsProvider$Outbound = {
|
|
|
458
503
|
export declare const ChatGenerationParamsProvider$outboundSchema: z.ZodType<ChatGenerationParamsProvider$Outbound, ChatGenerationParamsProvider>;
|
|
459
504
|
export declare function chatGenerationParamsProviderToJSON(chatGenerationParamsProvider: ChatGenerationParamsProvider): string;
|
|
460
505
|
/** @internal */
|
|
506
|
+
export type ChatGenerationParamsPluginContextCompression$Outbound = {
|
|
507
|
+
id: "context-compression";
|
|
508
|
+
enabled?: boolean | undefined;
|
|
509
|
+
engine?: string | undefined;
|
|
510
|
+
};
|
|
511
|
+
/** @internal */
|
|
512
|
+
export declare const ChatGenerationParamsPluginContextCompression$outboundSchema: z.ZodType<ChatGenerationParamsPluginContextCompression$Outbound, ChatGenerationParamsPluginContextCompression>;
|
|
513
|
+
export declare function chatGenerationParamsPluginContextCompressionToJSON(chatGenerationParamsPluginContextCompression: ChatGenerationParamsPluginContextCompression): string;
|
|
514
|
+
/** @internal */
|
|
461
515
|
export type ChatGenerationParamsPluginResponseHealing$Outbound = {
|
|
462
516
|
id: "response-healing";
|
|
463
517
|
enabled?: boolean | undefined;
|
|
@@ -481,6 +535,8 @@ export type ChatGenerationParamsPluginWeb$Outbound = {
|
|
|
481
535
|
max_results?: number | undefined;
|
|
482
536
|
search_prompt?: string | undefined;
|
|
483
537
|
engine?: string | undefined;
|
|
538
|
+
include_domains?: Array<string> | undefined;
|
|
539
|
+
exclude_domains?: Array<string> | undefined;
|
|
484
540
|
};
|
|
485
541
|
/** @internal */
|
|
486
542
|
export declare const ChatGenerationParamsPluginWeb$outboundSchema: z.ZodType<ChatGenerationParamsPluginWeb$Outbound, ChatGenerationParamsPluginWeb>;
|
|
@@ -502,7 +558,7 @@ export type ChatGenerationParamsPluginAutoRouter$Outbound = {
|
|
|
502
558
|
export declare const ChatGenerationParamsPluginAutoRouter$outboundSchema: z.ZodType<ChatGenerationParamsPluginAutoRouter$Outbound, ChatGenerationParamsPluginAutoRouter>;
|
|
503
559
|
export declare function chatGenerationParamsPluginAutoRouterToJSON(chatGenerationParamsPluginAutoRouter: ChatGenerationParamsPluginAutoRouter): string;
|
|
504
560
|
/** @internal */
|
|
505
|
-
export type ChatGenerationParamsPluginUnion$Outbound = ChatGenerationParamsPluginAutoRouter$Outbound | ChatGenerationParamsPluginModeration$Outbound | ChatGenerationParamsPluginWeb$Outbound | ChatGenerationParamsPluginFileParser$Outbound | ChatGenerationParamsPluginResponseHealing$Outbound;
|
|
561
|
+
export type ChatGenerationParamsPluginUnion$Outbound = ChatGenerationParamsPluginAutoRouter$Outbound | ChatGenerationParamsPluginModeration$Outbound | ChatGenerationParamsPluginWeb$Outbound | ChatGenerationParamsPluginFileParser$Outbound | ChatGenerationParamsPluginResponseHealing$Outbound | ChatGenerationParamsPluginContextCompression$Outbound;
|
|
506
562
|
/** @internal */
|
|
507
563
|
export declare const ChatGenerationParamsPluginUnion$outboundSchema: z.ZodType<ChatGenerationParamsPluginUnion$Outbound, ChatGenerationParamsPluginUnion>;
|
|
508
564
|
export declare function chatGenerationParamsPluginUnionToJSON(chatGenerationParamsPluginUnion: ChatGenerationParamsPluginUnion): string;
|
|
@@ -546,9 +602,21 @@ export declare function chatGenerationParamsImageConfigToJSON(chatGenerationPara
|
|
|
546
602
|
/** @internal */
|
|
547
603
|
export declare const Modality$outboundSchema: z.ZodType<string, Modality>;
|
|
548
604
|
/** @internal */
|
|
605
|
+
export declare const ChatGenerationParamsType$outboundSchema: z.ZodEnum<typeof ChatGenerationParamsType>;
|
|
606
|
+
/** @internal */
|
|
607
|
+
export declare const ChatGenerationParamsTtl$outboundSchema: z.ZodType<string, ChatGenerationParamsTtl>;
|
|
608
|
+
/** @internal */
|
|
609
|
+
export type CacheControl$Outbound = {
|
|
610
|
+
type: string;
|
|
611
|
+
ttl?: string | undefined;
|
|
612
|
+
};
|
|
613
|
+
/** @internal */
|
|
614
|
+
export declare const CacheControl$outboundSchema: z.ZodType<CacheControl$Outbound, CacheControl>;
|
|
615
|
+
export declare function cacheControlToJSON(cacheControl: CacheControl): string;
|
|
616
|
+
/** @internal */
|
|
549
617
|
export type ChatGenerationParams$Outbound = {
|
|
550
618
|
provider?: ChatGenerationParamsProvider$Outbound | null | undefined;
|
|
551
|
-
plugins?: Array<ChatGenerationParamsPluginAutoRouter$Outbound | ChatGenerationParamsPluginModeration$Outbound | ChatGenerationParamsPluginWeb$Outbound | ChatGenerationParamsPluginFileParser$Outbound | ChatGenerationParamsPluginResponseHealing$Outbound> | undefined;
|
|
619
|
+
plugins?: Array<ChatGenerationParamsPluginAutoRouter$Outbound | ChatGenerationParamsPluginModeration$Outbound | ChatGenerationParamsPluginWeb$Outbound | ChatGenerationParamsPluginFileParser$Outbound | ChatGenerationParamsPluginResponseHealing$Outbound | ChatGenerationParamsPluginContextCompression$Outbound> | undefined;
|
|
552
620
|
user?: string | undefined;
|
|
553
621
|
session_id?: string | undefined;
|
|
554
622
|
trace?: ChatGenerationParamsTrace$Outbound | undefined;
|
|
@@ -583,6 +651,7 @@ export type ChatGenerationParams$Outbound = {
|
|
|
583
651
|
[k: string]: string | number | Array<any | null>;
|
|
584
652
|
} | undefined;
|
|
585
653
|
modalities?: Array<string> | undefined;
|
|
654
|
+
cache_control?: CacheControl$Outbound | undefined;
|
|
586
655
|
};
|
|
587
656
|
/** @internal */
|
|
588
657
|
export declare const ChatGenerationParams$outboundSchema: z.ZodType<ChatGenerationParams$Outbound, ChatGenerationParams>;
|
|
@@ -6,6 +6,7 @@ import * as z from "zod/v4";
|
|
|
6
6
|
import { remap as remap$ } from "../lib/primitives.js";
|
|
7
7
|
import * as openEnums from "../types/enums.js";
|
|
8
8
|
import { ChatStreamOptions$outboundSchema, } from "./chatstreamoptions.js";
|
|
9
|
+
import { ContextCompressionEngine$outboundSchema, } from "./contextcompressionengine.js";
|
|
9
10
|
import { DataCollection$outboundSchema, } from "./datacollection.js";
|
|
10
11
|
import { DebugOptions$outboundSchema, } from "./debugoptions.js";
|
|
11
12
|
import { Message$outboundSchema, } from "./message.js";
|
|
@@ -26,11 +27,13 @@ export const ChatGenerationParamsSortEnum = {
|
|
|
26
27
|
Price: "price",
|
|
27
28
|
Throughput: "throughput",
|
|
28
29
|
Latency: "latency",
|
|
30
|
+
Exacto: "exacto",
|
|
29
31
|
};
|
|
30
32
|
export const ChatGenerationParamsProviderSortConfigEnum = {
|
|
31
33
|
Price: "price",
|
|
32
34
|
Throughput: "throughput",
|
|
33
35
|
Latency: "latency",
|
|
36
|
+
Exacto: "exacto",
|
|
34
37
|
};
|
|
35
38
|
/**
|
|
36
39
|
* The provider sorting strategy (price, throughput, latency)
|
|
@@ -39,6 +42,7 @@ export const ChatGenerationParamsBy = {
|
|
|
39
42
|
Price: "price",
|
|
40
43
|
Throughput: "throughput",
|
|
41
44
|
Latency: "latency",
|
|
45
|
+
Exacto: "exacto",
|
|
42
46
|
};
|
|
43
47
|
/**
|
|
44
48
|
* Partitioning strategy for sorting: "model" (default) groups endpoints by model before sorting (fallback models remain fallbacks), "none" sorts all endpoints together regardless of model.
|
|
@@ -54,6 +58,7 @@ export const ChatGenerationParamsProviderSort = {
|
|
|
54
58
|
Price: "price",
|
|
55
59
|
Throughput: "throughput",
|
|
56
60
|
Latency: "latency",
|
|
61
|
+
Exacto: "exacto",
|
|
57
62
|
};
|
|
58
63
|
/**
|
|
59
64
|
* Constrains effort on reasoning for reasoning models
|
|
@@ -69,6 +74,14 @@ export const Effort = {
|
|
|
69
74
|
export const Modality = {
|
|
70
75
|
Text: "text",
|
|
71
76
|
Image: "image",
|
|
77
|
+
Audio: "audio",
|
|
78
|
+
};
|
|
79
|
+
export const ChatGenerationParamsType = {
|
|
80
|
+
Ephemeral: "ephemeral",
|
|
81
|
+
};
|
|
82
|
+
export const ChatGenerationParamsTtl = {
|
|
83
|
+
Fivem: "5m",
|
|
84
|
+
Oneh: "1h",
|
|
72
85
|
};
|
|
73
86
|
/** @internal */
|
|
74
87
|
export const ChatGenerationParamsOrder$outboundSchema = z.union([ProviderName$outboundSchema, z.string()]);
|
|
@@ -177,6 +190,15 @@ export function chatGenerationParamsProviderToJSON(chatGenerationParamsProvider)
|
|
|
177
190
|
return JSON.stringify(ChatGenerationParamsProvider$outboundSchema.parse(chatGenerationParamsProvider));
|
|
178
191
|
}
|
|
179
192
|
/** @internal */
|
|
193
|
+
export const ChatGenerationParamsPluginContextCompression$outboundSchema = z.object({
|
|
194
|
+
id: z.literal("context-compression"),
|
|
195
|
+
enabled: z.boolean().optional(),
|
|
196
|
+
engine: ContextCompressionEngine$outboundSchema.optional(),
|
|
197
|
+
});
|
|
198
|
+
export function chatGenerationParamsPluginContextCompressionToJSON(chatGenerationParamsPluginContextCompression) {
|
|
199
|
+
return JSON.stringify(ChatGenerationParamsPluginContextCompression$outboundSchema.parse(chatGenerationParamsPluginContextCompression));
|
|
200
|
+
}
|
|
201
|
+
/** @internal */
|
|
180
202
|
export const ChatGenerationParamsPluginResponseHealing$outboundSchema = z.object({
|
|
181
203
|
id: z.literal("response-healing"),
|
|
182
204
|
enabled: z.boolean().optional(),
|
|
@@ -200,10 +222,14 @@ export const ChatGenerationParamsPluginWeb$outboundSchema = z.object({
|
|
|
200
222
|
maxResults: z.number().optional(),
|
|
201
223
|
searchPrompt: z.string().optional(),
|
|
202
224
|
engine: WebSearchEngine$outboundSchema.optional(),
|
|
225
|
+
includeDomains: z.array(z.string()).optional(),
|
|
226
|
+
excludeDomains: z.array(z.string()).optional(),
|
|
203
227
|
}).transform((v) => {
|
|
204
228
|
return remap$(v, {
|
|
205
229
|
maxResults: "max_results",
|
|
206
230
|
searchPrompt: "search_prompt",
|
|
231
|
+
includeDomains: "include_domains",
|
|
232
|
+
excludeDomains: "exclude_domains",
|
|
207
233
|
});
|
|
208
234
|
});
|
|
209
235
|
export function chatGenerationParamsPluginWebToJSON(chatGenerationParamsPluginWeb) {
|
|
@@ -236,6 +262,7 @@ export const ChatGenerationParamsPluginUnion$outboundSchema = z.union([
|
|
|
236
262
|
z.lazy(() => ChatGenerationParamsPluginWeb$outboundSchema),
|
|
237
263
|
z.lazy(() => ChatGenerationParamsPluginFileParser$outboundSchema),
|
|
238
264
|
z.lazy(() => ChatGenerationParamsPluginResponseHealing$outboundSchema),
|
|
265
|
+
z.lazy(() => ChatGenerationParamsPluginContextCompression$outboundSchema),
|
|
239
266
|
]);
|
|
240
267
|
export function chatGenerationParamsPluginUnionToJSON(chatGenerationParamsPluginUnion) {
|
|
241
268
|
return JSON.stringify(ChatGenerationParamsPluginUnion$outboundSchema.parse(chatGenerationParamsPluginUnion));
|
|
@@ -304,6 +331,18 @@ export function chatGenerationParamsImageConfigToJSON(chatGenerationParamsImageC
|
|
|
304
331
|
export const Modality$outboundSchema = openEnums
|
|
305
332
|
.outboundSchema(Modality);
|
|
306
333
|
/** @internal */
|
|
334
|
+
export const ChatGenerationParamsType$outboundSchema = z.enum(ChatGenerationParamsType);
|
|
335
|
+
/** @internal */
|
|
336
|
+
export const ChatGenerationParamsTtl$outboundSchema = openEnums.outboundSchema(ChatGenerationParamsTtl);
|
|
337
|
+
/** @internal */
|
|
338
|
+
export const CacheControl$outboundSchema = z.object({
|
|
339
|
+
type: ChatGenerationParamsType$outboundSchema,
|
|
340
|
+
ttl: ChatGenerationParamsTtl$outboundSchema.optional(),
|
|
341
|
+
});
|
|
342
|
+
export function cacheControlToJSON(cacheControl) {
|
|
343
|
+
return JSON.stringify(CacheControl$outboundSchema.parse(cacheControl));
|
|
344
|
+
}
|
|
345
|
+
/** @internal */
|
|
307
346
|
export const ChatGenerationParams$outboundSchema = z.object({
|
|
308
347
|
provider: z.nullable(z.lazy(() => ChatGenerationParamsProvider$outboundSchema)).optional(),
|
|
309
348
|
plugins: z.array(z.union([
|
|
@@ -312,6 +351,7 @@ export const ChatGenerationParams$outboundSchema = z.object({
|
|
|
312
351
|
z.lazy(() => ChatGenerationParamsPluginWeb$outboundSchema),
|
|
313
352
|
z.lazy(() => ChatGenerationParamsPluginFileParser$outboundSchema),
|
|
314
353
|
z.lazy(() => ChatGenerationParamsPluginResponseHealing$outboundSchema),
|
|
354
|
+
z.lazy(() => ChatGenerationParamsPluginContextCompression$outboundSchema),
|
|
315
355
|
])).optional(),
|
|
316
356
|
user: z.string().optional(),
|
|
317
357
|
sessionId: z.string().optional(),
|
|
@@ -348,6 +388,7 @@ export const ChatGenerationParams$outboundSchema = z.object({
|
|
|
348
388
|
debug: DebugOptions$outboundSchema.optional(),
|
|
349
389
|
imageConfig: z.record(z.string(), z.union([z.string(), z.number(), z.array(z.nullable(z.any()))])).optional(),
|
|
350
390
|
modalities: z.array(Modality$outboundSchema).optional(),
|
|
391
|
+
cacheControl: z.lazy(() => CacheControl$outboundSchema).optional(),
|
|
351
392
|
}).transform((v) => {
|
|
352
393
|
return remap$(v, {
|
|
353
394
|
sessionId: "session_id",
|
|
@@ -363,6 +404,7 @@ export const ChatGenerationParams$outboundSchema = z.object({
|
|
|
363
404
|
toolChoice: "tool_choice",
|
|
364
405
|
topP: "top_p",
|
|
365
406
|
imageConfig: "image_config",
|
|
407
|
+
cacheControl: "cache_control",
|
|
366
408
|
});
|
|
367
409
|
});
|
|
368
410
|
export function chatGenerationParamsToJSON(chatGenerationParams) {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as z from "zod/v4";
|
|
2
2
|
import { Result as SafeParseResult } from "../types/fp.js";
|
|
3
3
|
import { ChatMessageContentItemAudio, ChatMessageContentItemAudio$Outbound } from "./chatmessagecontentitemaudio.js";
|
|
4
|
+
import { ChatMessageContentItemFile, ChatMessageContentItemFile$Outbound } from "./chatmessagecontentitemfile.js";
|
|
4
5
|
import { ChatMessageContentItemImage, ChatMessageContentItemImage$Outbound } from "./chatmessagecontentitemimage.js";
|
|
5
6
|
import { ChatMessageContentItemText, ChatMessageContentItemText$Outbound } from "./chatmessagecontentitemtext.js";
|
|
6
7
|
import { ChatMessageContentItemVideo, ChatMessageContentItemVideo$Outbound } from "./chatmessagecontentitemvideo.js";
|
|
@@ -10,7 +11,7 @@ export type ChatMessageContentItem1 = ChatMessageContentItemVideoLegacy | ChatMe
|
|
|
10
11
|
/**
|
|
11
12
|
* Content part for chat completion messages
|
|
12
13
|
*/
|
|
13
|
-
export type ChatMessageContentItem = ChatMessageContentItemText | ChatMessageContentItemImage | ChatMessageContentItemAudio | ChatMessageContentItemVideoLegacy | ChatMessageContentItemVideo;
|
|
14
|
+
export type ChatMessageContentItem = ChatMessageContentItemText | ChatMessageContentItemImage | ChatMessageContentItemAudio | ChatMessageContentItemFile | ChatMessageContentItemVideoLegacy | ChatMessageContentItemVideo;
|
|
14
15
|
/** @internal */
|
|
15
16
|
export declare const ChatMessageContentItem1$inboundSchema: z.ZodType<ChatMessageContentItem1, unknown>;
|
|
16
17
|
/** @internal */
|
|
@@ -22,7 +23,7 @@ export declare function chatMessageContentItem1FromJSON(jsonString: string): Saf
|
|
|
22
23
|
/** @internal */
|
|
23
24
|
export declare const ChatMessageContentItem$inboundSchema: z.ZodType<ChatMessageContentItem, unknown>;
|
|
24
25
|
/** @internal */
|
|
25
|
-
export type ChatMessageContentItem$Outbound = ChatMessageContentItemText$Outbound | ChatMessageContentItemImage$Outbound | ChatMessageContentItemAudio$Outbound | ChatMessageContentItemVideoLegacy$Outbound | ChatMessageContentItemVideo$Outbound;
|
|
26
|
+
export type ChatMessageContentItem$Outbound = ChatMessageContentItemText$Outbound | ChatMessageContentItemImage$Outbound | ChatMessageContentItemAudio$Outbound | ChatMessageContentItemFile$Outbound | ChatMessageContentItemVideoLegacy$Outbound | ChatMessageContentItemVideo$Outbound;
|
|
26
27
|
/** @internal */
|
|
27
28
|
export declare const ChatMessageContentItem$outboundSchema: z.ZodType<ChatMessageContentItem$Outbound, ChatMessageContentItem>;
|
|
28
29
|
export declare function chatMessageContentItemToJSON(chatMessageContentItem: ChatMessageContentItem): string;
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import * as z from "zod/v4";
|
|
6
6
|
import { safeParse } from "../lib/schemas.js";
|
|
7
7
|
import { ChatMessageContentItemAudio$inboundSchema, ChatMessageContentItemAudio$outboundSchema, } from "./chatmessagecontentitemaudio.js";
|
|
8
|
+
import { ChatMessageContentItemFile$inboundSchema, ChatMessageContentItemFile$outboundSchema, } from "./chatmessagecontentitemfile.js";
|
|
8
9
|
import { ChatMessageContentItemImage$inboundSchema, ChatMessageContentItemImage$outboundSchema, } from "./chatmessagecontentitemimage.js";
|
|
9
10
|
import { ChatMessageContentItemText$inboundSchema, ChatMessageContentItemText$outboundSchema, } from "./chatmessagecontentitemtext.js";
|
|
10
11
|
import { ChatMessageContentItemVideo$inboundSchema, ChatMessageContentItemVideo$outboundSchema, } from "./chatmessagecontentitemvideo.js";
|
|
@@ -30,6 +31,7 @@ export const ChatMessageContentItem$inboundSchema = z.union([
|
|
|
30
31
|
ChatMessageContentItemText$inboundSchema,
|
|
31
32
|
ChatMessageContentItemImage$inboundSchema,
|
|
32
33
|
ChatMessageContentItemAudio$inboundSchema,
|
|
34
|
+
ChatMessageContentItemFile$inboundSchema,
|
|
33
35
|
z.union([
|
|
34
36
|
ChatMessageContentItemVideoLegacy$inboundSchema,
|
|
35
37
|
ChatMessageContentItemVideo$inboundSchema,
|
|
@@ -40,6 +42,7 @@ export const ChatMessageContentItem$outboundSchema = z.union([
|
|
|
40
42
|
ChatMessageContentItemText$outboundSchema,
|
|
41
43
|
ChatMessageContentItemImage$outboundSchema,
|
|
42
44
|
ChatMessageContentItemAudio$outboundSchema,
|
|
45
|
+
ChatMessageContentItemFile$outboundSchema,
|
|
43
46
|
z.union([
|
|
44
47
|
ChatMessageContentItemVideoLegacy$outboundSchema,
|
|
45
48
|
ChatMessageContentItemVideo$outboundSchema,
|
|
@@ -6,26 +6,26 @@ export declare const ChatMessageContentItemCacheControlType: {
|
|
|
6
6
|
readonly Ephemeral: "ephemeral";
|
|
7
7
|
};
|
|
8
8
|
export type ChatMessageContentItemCacheControlType = ClosedEnum<typeof ChatMessageContentItemCacheControlType>;
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const ChatMessageContentItemCacheControlTtl: {
|
|
10
10
|
readonly Fivem: "5m";
|
|
11
11
|
readonly Oneh: "1h";
|
|
12
12
|
};
|
|
13
|
-
export type
|
|
13
|
+
export type ChatMessageContentItemCacheControlTtl = OpenEnum<typeof ChatMessageContentItemCacheControlTtl>;
|
|
14
14
|
/**
|
|
15
15
|
* Cache control for the content part
|
|
16
16
|
*/
|
|
17
17
|
export type ChatMessageContentItemCacheControl = {
|
|
18
18
|
type: ChatMessageContentItemCacheControlType;
|
|
19
|
-
ttl?:
|
|
19
|
+
ttl?: ChatMessageContentItemCacheControlTtl | undefined;
|
|
20
20
|
};
|
|
21
21
|
/** @internal */
|
|
22
22
|
export declare const ChatMessageContentItemCacheControlType$inboundSchema: z.ZodEnum<typeof ChatMessageContentItemCacheControlType>;
|
|
23
23
|
/** @internal */
|
|
24
24
|
export declare const ChatMessageContentItemCacheControlType$outboundSchema: z.ZodEnum<typeof ChatMessageContentItemCacheControlType>;
|
|
25
25
|
/** @internal */
|
|
26
|
-
export declare const
|
|
26
|
+
export declare const ChatMessageContentItemCacheControlTtl$inboundSchema: z.ZodType<ChatMessageContentItemCacheControlTtl, unknown>;
|
|
27
27
|
/** @internal */
|
|
28
|
-
export declare const
|
|
28
|
+
export declare const ChatMessageContentItemCacheControlTtl$outboundSchema: z.ZodType<string, ChatMessageContentItemCacheControlTtl>;
|
|
29
29
|
/** @internal */
|
|
30
30
|
export declare const ChatMessageContentItemCacheControl$inboundSchema: z.ZodType<ChatMessageContentItemCacheControl, unknown>;
|
|
31
31
|
/** @internal */
|
|
@@ -8,7 +8,7 @@ import * as openEnums from "../types/enums.js";
|
|
|
8
8
|
export const ChatMessageContentItemCacheControlType = {
|
|
9
9
|
Ephemeral: "ephemeral",
|
|
10
10
|
};
|
|
11
|
-
export const
|
|
11
|
+
export const ChatMessageContentItemCacheControlTtl = {
|
|
12
12
|
Fivem: "5m",
|
|
13
13
|
Oneh: "1h",
|
|
14
14
|
};
|
|
@@ -17,20 +17,18 @@ export const ChatMessageContentItemCacheControlType$inboundSchema = z.enum(ChatM
|
|
|
17
17
|
/** @internal */
|
|
18
18
|
export const ChatMessageContentItemCacheControlType$outboundSchema = ChatMessageContentItemCacheControlType$inboundSchema;
|
|
19
19
|
/** @internal */
|
|
20
|
-
export const
|
|
21
|
-
.inboundSchema(Ttl);
|
|
20
|
+
export const ChatMessageContentItemCacheControlTtl$inboundSchema = openEnums.inboundSchema(ChatMessageContentItemCacheControlTtl);
|
|
22
21
|
/** @internal */
|
|
23
|
-
export const
|
|
24
|
-
.outboundSchema(Ttl);
|
|
22
|
+
export const ChatMessageContentItemCacheControlTtl$outboundSchema = openEnums.outboundSchema(ChatMessageContentItemCacheControlTtl);
|
|
25
23
|
/** @internal */
|
|
26
24
|
export const ChatMessageContentItemCacheControl$inboundSchema = z.object({
|
|
27
25
|
type: ChatMessageContentItemCacheControlType$inboundSchema,
|
|
28
|
-
ttl:
|
|
26
|
+
ttl: ChatMessageContentItemCacheControlTtl$inboundSchema.optional(),
|
|
29
27
|
});
|
|
30
28
|
/** @internal */
|
|
31
29
|
export const ChatMessageContentItemCacheControl$outboundSchema = z.object({
|
|
32
30
|
type: ChatMessageContentItemCacheControlType$outboundSchema,
|
|
33
|
-
ttl:
|
|
31
|
+
ttl: ChatMessageContentItemCacheControlTtl$outboundSchema.optional(),
|
|
34
32
|
});
|
|
35
33
|
export function chatMessageContentItemCacheControlToJSON(chatMessageContentItemCacheControl) {
|
|
36
34
|
return JSON.stringify(ChatMessageContentItemCacheControl$outboundSchema.parse(chatMessageContentItemCacheControl));
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import * as z from "zod/v4";
|
|
2
|
+
import { ClosedEnum } from "../types/enums.js";
|
|
3
|
+
import { Result as SafeParseResult } from "../types/fp.js";
|
|
4
|
+
import { SDKValidationError } from "./errors/sdkvalidationerror.js";
|
|
5
|
+
export declare const ChatMessageContentItemFileType: {
|
|
6
|
+
readonly File: "file";
|
|
7
|
+
};
|
|
8
|
+
export type ChatMessageContentItemFileType = ClosedEnum<typeof ChatMessageContentItemFileType>;
|
|
9
|
+
export type FileT = {
|
|
10
|
+
/**
|
|
11
|
+
* File content as base64 data URL or URL
|
|
12
|
+
*/
|
|
13
|
+
fileData?: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* File ID for previously uploaded files
|
|
16
|
+
*/
|
|
17
|
+
fileId?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* Original filename
|
|
20
|
+
*/
|
|
21
|
+
filename?: string | undefined;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* File content part for document processing
|
|
25
|
+
*/
|
|
26
|
+
export type ChatMessageContentItemFile = {
|
|
27
|
+
type: ChatMessageContentItemFileType;
|
|
28
|
+
file: FileT;
|
|
29
|
+
};
|
|
30
|
+
/** @internal */
|
|
31
|
+
export declare const ChatMessageContentItemFileType$inboundSchema: z.ZodEnum<typeof ChatMessageContentItemFileType>;
|
|
32
|
+
/** @internal */
|
|
33
|
+
export declare const ChatMessageContentItemFileType$outboundSchema: z.ZodEnum<typeof ChatMessageContentItemFileType>;
|
|
34
|
+
/** @internal */
|
|
35
|
+
export declare const FileT$inboundSchema: z.ZodType<FileT, unknown>;
|
|
36
|
+
/** @internal */
|
|
37
|
+
export type FileT$Outbound = {
|
|
38
|
+
file_data?: string | undefined;
|
|
39
|
+
file_id?: string | undefined;
|
|
40
|
+
filename?: string | undefined;
|
|
41
|
+
};
|
|
42
|
+
/** @internal */
|
|
43
|
+
export declare const FileT$outboundSchema: z.ZodType<FileT$Outbound, FileT>;
|
|
44
|
+
export declare function fileToJSON(fileT: FileT): string;
|
|
45
|
+
export declare function fileFromJSON(jsonString: string): SafeParseResult<FileT, SDKValidationError>;
|
|
46
|
+
/** @internal */
|
|
47
|
+
export declare const ChatMessageContentItemFile$inboundSchema: z.ZodType<ChatMessageContentItemFile, unknown>;
|
|
48
|
+
/** @internal */
|
|
49
|
+
export type ChatMessageContentItemFile$Outbound = {
|
|
50
|
+
type: string;
|
|
51
|
+
file: FileT$Outbound;
|
|
52
|
+
};
|
|
53
|
+
/** @internal */
|
|
54
|
+
export declare const ChatMessageContentItemFile$outboundSchema: z.ZodType<ChatMessageContentItemFile$Outbound, ChatMessageContentItemFile>;
|
|
55
|
+
export declare function chatMessageContentItemFileToJSON(chatMessageContentItemFile: ChatMessageContentItemFile): string;
|
|
56
|
+
export declare function chatMessageContentItemFileFromJSON(jsonString: string): SafeParseResult<ChatMessageContentItemFile, SDKValidationError>;
|
|
57
|
+
//# sourceMappingURL=chatmessagecontentitemfile.d.ts.map
|