@opencode-ai/ai 0.0.0-dev-18001 → 0.0.0-dev-18002
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/dist/protocols/open-responses.d.ts +6 -6
- package/dist/protocols/openai-compatible-responses.d.ts +1 -1
- package/dist/protocols/openai-responses.d.ts +6 -6
- package/dist/protocols/openai-responses.js +1 -1
- package/dist/protocols/utils/open-responses-options.d.ts +4 -3
- package/dist/protocols/utils/open-responses-options.js +2 -1
- package/dist/protocols/utils/openai-options.d.ts +3 -3
- package/dist/protocols/utils/openai-options.js +1 -1
- package/dist/protocols/xai-responses.d.ts +1 -1
- package/dist/providers/amazon-bedrock-mantle.d.ts +11 -11
- package/dist/providers/azure.d.ts +8 -8
- package/dist/providers/cloudflare.d.ts +2 -2
- package/dist/providers/google-vertex-chat.d.ts +2 -2
- package/dist/providers/google-vertex-responses.d.ts +1 -1
- package/dist/providers/openai-compatible-responses.d.ts +1 -1
- package/dist/providers/openai-compatible.d.ts +9 -9
- package/dist/providers/openai-options.d.ts +6 -2
- package/dist/providers/openai.d.ts +12 -12
- package/dist/providers/xai.d.ts +11 -11
- package/package.json +3 -3
|
@@ -207,7 +207,7 @@ export declare const coreFields: {
|
|
|
207
207
|
}>>;
|
|
208
208
|
top_logprobs: Schema.optional<Schema.Int>;
|
|
209
209
|
truncation: Schema.optional<Schema.Literals<readonly ["auto", "disabled"]>>;
|
|
210
|
-
service_tier: Schema.optional<Schema.
|
|
210
|
+
service_tier: Schema.optional<Schema.declare<OpenResponsesOptions.ServiceTier, OpenResponsesOptions.ServiceTier>>;
|
|
211
211
|
prompt_cache_key: Schema.optional<Schema.String>;
|
|
212
212
|
include: Schema.optional<Schema.$Array<Schema.declare<OpenResponsesOptions.ResponseIncludable, OpenResponsesOptions.ResponseIncludable>>>;
|
|
213
213
|
reasoning: Schema.optional<Schema.Struct<{
|
|
@@ -320,7 +320,7 @@ declare const OpenResponsesBody: Schema.Struct<{
|
|
|
320
320
|
}>>;
|
|
321
321
|
readonly top_logprobs: Schema.optional<Schema.Int>;
|
|
322
322
|
readonly truncation: Schema.optional<Schema.Literals<readonly ["auto", "disabled"]>>;
|
|
323
|
-
readonly service_tier: Schema.optional<Schema.
|
|
323
|
+
readonly service_tier: Schema.optional<Schema.declare<OpenResponsesOptions.ServiceTier, OpenResponsesOptions.ServiceTier>>;
|
|
324
324
|
readonly prompt_cache_key: Schema.optional<Schema.String>;
|
|
325
325
|
readonly include: Schema.optional<Schema.$Array<Schema.declare<OpenResponsesOptions.ResponseIncludable, OpenResponsesOptions.ResponseIncludable>>>;
|
|
326
326
|
readonly reasoning: Schema.optional<Schema.Struct<{
|
|
@@ -479,7 +479,7 @@ export declare const fromRequestWithExtension: (request: LLMRequest, extension:
|
|
|
479
479
|
truncation?: "auto" | "disabled" | undefined;
|
|
480
480
|
parallel_tool_calls?: boolean | undefined;
|
|
481
481
|
max_tool_calls?: number | undefined;
|
|
482
|
-
service_tier?:
|
|
482
|
+
service_tier?: OpenResponsesOptions.ServiceTier | undefined;
|
|
483
483
|
text?: {
|
|
484
484
|
verbosity: OpenResponsesOptions.TextVerbosity;
|
|
485
485
|
} | undefined;
|
|
@@ -640,7 +640,7 @@ export declare const fromRequest: (request: LLMRequest) => Effect.Effect<{
|
|
|
640
640
|
readonly presence_penalty?: number | undefined;
|
|
641
641
|
readonly safety_identifier?: string | undefined;
|
|
642
642
|
readonly top_logprobs?: number | undefined;
|
|
643
|
-
readonly service_tier?:
|
|
643
|
+
readonly service_tier?: OpenResponsesOptions.ServiceTier | undefined;
|
|
644
644
|
readonly max_output_tokens?: number | undefined;
|
|
645
645
|
readonly max_tool_calls?: number | undefined;
|
|
646
646
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -950,7 +950,7 @@ export declare const protocol: Protocol<{
|
|
|
950
950
|
readonly presence_penalty?: number | undefined;
|
|
951
951
|
readonly safety_identifier?: string | undefined;
|
|
952
952
|
readonly top_logprobs?: number | undefined;
|
|
953
|
-
readonly service_tier?:
|
|
953
|
+
readonly service_tier?: OpenResponsesOptions.ServiceTier | undefined;
|
|
954
954
|
readonly max_output_tokens?: number | undefined;
|
|
955
955
|
readonly max_tool_calls?: number | undefined;
|
|
956
956
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -1121,7 +1121,7 @@ export declare const httpTransport: HttpTransport.HttpJsonTransport<{
|
|
|
1121
1121
|
readonly presence_penalty?: number | undefined;
|
|
1122
1122
|
readonly safety_identifier?: string | undefined;
|
|
1123
1123
|
readonly top_logprobs?: number | undefined;
|
|
1124
|
-
readonly service_tier?:
|
|
1124
|
+
readonly service_tier?: OpenResponsesOptions.ServiceTier | undefined;
|
|
1125
1125
|
readonly max_output_tokens?: number | undefined;
|
|
1126
1126
|
readonly max_tool_calls?: number | undefined;
|
|
1127
1127
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -117,7 +117,7 @@ export declare const route: Route<{
|
|
|
117
117
|
readonly presence_penalty?: number | undefined;
|
|
118
118
|
readonly safety_identifier?: string | undefined;
|
|
119
119
|
readonly top_logprobs?: number | undefined;
|
|
120
|
-
readonly service_tier?: "
|
|
120
|
+
readonly service_tier?: import("./utils/open-responses-options.js").ServiceTier | undefined;
|
|
121
121
|
readonly max_output_tokens?: number | undefined;
|
|
122
122
|
readonly max_tool_calls?: number | undefined;
|
|
123
123
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -112,7 +112,7 @@ declare const OpenAIResponsesBody: Schema.Struct<{
|
|
|
112
112
|
}>>;
|
|
113
113
|
readonly top_logprobs: Schema.optional<Schema.Int>;
|
|
114
114
|
readonly truncation: Schema.optional<Schema.Literals<readonly ["auto", "disabled"]>>;
|
|
115
|
-
readonly service_tier: Schema.optional<Schema.
|
|
115
|
+
readonly service_tier: Schema.optional<Schema.declare<import("./utils/open-responses-options.js").ServiceTier, import("./utils/open-responses-options.js").ServiceTier>>;
|
|
116
116
|
readonly prompt_cache_key: Schema.optional<Schema.String>;
|
|
117
117
|
readonly include: Schema.optional<Schema.$Array<Schema.declare<import("./utils/open-responses-options.js").ResponseIncludable, import("./utils/open-responses-options.js").ResponseIncludable>>>;
|
|
118
118
|
readonly reasoning: Schema.optional<Schema.Struct<{
|
|
@@ -255,7 +255,7 @@ export declare const protocol: Protocol<{
|
|
|
255
255
|
readonly presence_penalty?: number | undefined;
|
|
256
256
|
readonly safety_identifier?: string | undefined;
|
|
257
257
|
readonly top_logprobs?: number | undefined;
|
|
258
|
-
readonly service_tier?: "
|
|
258
|
+
readonly service_tier?: import("./utils/open-responses-options.js").ServiceTier | undefined;
|
|
259
259
|
readonly max_output_tokens?: number | undefined;
|
|
260
260
|
readonly max_tool_calls?: number | undefined;
|
|
261
261
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -438,7 +438,7 @@ export declare const httpTransport: HttpTransport.HttpJsonTransport<{
|
|
|
438
438
|
readonly presence_penalty?: number | undefined;
|
|
439
439
|
readonly safety_identifier?: string | undefined;
|
|
440
440
|
readonly top_logprobs?: number | undefined;
|
|
441
|
-
readonly service_tier?: "
|
|
441
|
+
readonly service_tier?: import("./utils/open-responses-options.js").ServiceTier | undefined;
|
|
442
442
|
readonly max_output_tokens?: number | undefined;
|
|
443
443
|
readonly max_tool_calls?: number | undefined;
|
|
444
444
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -567,7 +567,7 @@ export declare const channelTransport: (options: import("./open-responses-channe
|
|
|
567
567
|
readonly presence_penalty?: number | undefined;
|
|
568
568
|
readonly safety_identifier?: string | undefined;
|
|
569
569
|
readonly top_logprobs?: number | undefined;
|
|
570
|
-
readonly service_tier?: "
|
|
570
|
+
readonly service_tier?: import("./utils/open-responses-options.js").ServiceTier | undefined;
|
|
571
571
|
readonly max_output_tokens?: number | undefined;
|
|
572
572
|
readonly max_tool_calls?: number | undefined;
|
|
573
573
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -696,7 +696,7 @@ export declare const transport: import("../route/transport/index.js").Transport<
|
|
|
696
696
|
readonly presence_penalty?: number | undefined;
|
|
697
697
|
readonly safety_identifier?: string | undefined;
|
|
698
698
|
readonly top_logprobs?: number | undefined;
|
|
699
|
-
readonly service_tier?: "
|
|
699
|
+
readonly service_tier?: import("./utils/open-responses-options.js").ServiceTier | undefined;
|
|
700
700
|
readonly max_output_tokens?: number | undefined;
|
|
701
701
|
readonly max_tool_calls?: number | undefined;
|
|
702
702
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -825,7 +825,7 @@ export declare const route: Route<{
|
|
|
825
825
|
readonly presence_penalty?: number | undefined;
|
|
826
826
|
readonly safety_identifier?: string | undefined;
|
|
827
827
|
readonly top_logprobs?: number | undefined;
|
|
828
|
-
readonly service_tier?: "
|
|
828
|
+
readonly service_tier?: import("./utils/open-responses-options.js").ServiceTier | undefined;
|
|
829
829
|
readonly max_output_tokens?: number | undefined;
|
|
830
830
|
readonly max_tool_calls?: number | undefined;
|
|
831
831
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -109,7 +109,7 @@ const HOSTED_TOOLS = {
|
|
|
109
109
|
name: "code_interpreter",
|
|
110
110
|
input: (item) => ({ code: item.code, container_id: item.container_id }),
|
|
111
111
|
},
|
|
112
|
-
|
|
112
|
+
computer_call: { name: "computer_use", input: (item) => item.action ?? {} },
|
|
113
113
|
image_generation_call: { name: "image_generation", input: () => ({}), result: hostedToolResult },
|
|
114
114
|
mcp_call: {
|
|
115
115
|
name: "mcp",
|
|
@@ -9,12 +9,13 @@ export declare const TextVerbosity: Schema.declare<TextVerbosity, TextVerbosity>
|
|
|
9
9
|
export declare const ResponseIncludables: readonly ["file_search_call.results", "web_search_call.results", "web_search_call.action.sources", "message.input_image.image_url", "computer_call_output.output.image_url", "code_interpreter_call.outputs", "reasoning.encrypted_content", "message.output_text.logprobs"];
|
|
10
10
|
export type ResponseIncludable = (typeof ResponseIncludables)[number] | (string & {});
|
|
11
11
|
export declare const ServiceTiers: readonly ["auto", "default", "flex", "priority"];
|
|
12
|
-
export type ServiceTier = (typeof ServiceTiers)[number];
|
|
12
|
+
export type ServiceTier = (typeof ServiceTiers)[number] | (string & {});
|
|
13
|
+
export declare const ServiceTier: Schema.declare<ServiceTier, ServiceTier>;
|
|
13
14
|
export declare const Truncations: readonly ["auto", "disabled"];
|
|
14
15
|
export type Truncation = (typeof Truncations)[number];
|
|
15
16
|
export declare const TextVerbositySchema: Schema.declare<TextVerbosity, TextVerbosity>;
|
|
16
17
|
export declare const ResponseIncludableSchema: Schema.declare<ResponseIncludable, ResponseIncludable>;
|
|
17
|
-
export declare const ServiceTierSchema: Schema.
|
|
18
|
+
export declare const ServiceTierSchema: Schema.declare<ServiceTier, ServiceTier>;
|
|
18
19
|
export declare const TruncationSchema: Schema.Literals<readonly ["auto", "disabled"]>;
|
|
19
20
|
export declare const AllowedTools: Schema.Struct<{
|
|
20
21
|
readonly toolNames: Schema.$Array<Schema.String>;
|
|
@@ -37,7 +38,7 @@ export declare const Options: Schema.Struct<{
|
|
|
37
38
|
readonly reasoningSummary: Schema.optional<Schema.Literals<readonly ["auto", "concise", "detailed"]>>;
|
|
38
39
|
readonly include: Schema.optional<Schema.$Array<Schema.declare<ResponseIncludable, ResponseIncludable>>>;
|
|
39
40
|
readonly textVerbosity: Schema.optional<Schema.declare<TextVerbosity, TextVerbosity>>;
|
|
40
|
-
readonly serviceTier: Schema.optional<Schema.
|
|
41
|
+
readonly serviceTier: Schema.optional<Schema.declare<ServiceTier, ServiceTier>>;
|
|
41
42
|
readonly truncation: Schema.optional<Schema.Literals<readonly ["auto", "disabled"]>>;
|
|
42
43
|
readonly allowedTools: Schema.optional<Schema.Struct<{
|
|
43
44
|
readonly toolNames: Schema.$Array<Schema.String>;
|
|
@@ -14,10 +14,11 @@ export const ResponseIncludables = [
|
|
|
14
14
|
"message.output_text.logprobs",
|
|
15
15
|
];
|
|
16
16
|
export const ServiceTiers = ["auto", "default", "flex", "priority"];
|
|
17
|
+
export const ServiceTier = Schema.declare((value) => typeof value === "string", { title: "ServiceTier" });
|
|
17
18
|
export const Truncations = ["auto", "disabled"];
|
|
18
19
|
export const TextVerbositySchema = TextVerbosity;
|
|
19
20
|
export const ResponseIncludableSchema = Schema.declare((value) => typeof value === "string", { title: "ResponseIncludable" });
|
|
20
|
-
export const ServiceTierSchema =
|
|
21
|
+
export const ServiceTierSchema = ServiceTier;
|
|
21
22
|
export const TruncationSchema = Schema.Literals(Truncations);
|
|
22
23
|
export const AllowedTools = Schema.Struct({
|
|
23
24
|
toolNames: Schema.Array(Schema.String),
|
|
@@ -5,12 +5,12 @@ export declare const OpenAITextVerbosities: readonly ["low", "medium", "high"];
|
|
|
5
5
|
export type OpenAITextVerbosity = OpenResponsesOptions.TextVerbosity;
|
|
6
6
|
export declare const OpenAIResponseIncludables: readonly ["file_search_call.results", "web_search_call.results", "web_search_call.action.sources", "message.input_image.image_url", "computer_call_output.output.image_url", "code_interpreter_call.outputs", "reasoning.encrypted_content", "message.output_text.logprobs"];
|
|
7
7
|
export type OpenAIResponseIncludable = OpenResponsesOptions.ResponseIncludable;
|
|
8
|
-
export declare const OpenAIServiceTiers: readonly ["auto", "default", "flex", "priority"];
|
|
9
|
-
export type OpenAIServiceTier =
|
|
8
|
+
export declare const OpenAIServiceTiers: readonly ["auto", "default", "flex", "priority", "scale"];
|
|
9
|
+
export type OpenAIServiceTier = (typeof OpenAIServiceTiers)[number] | (string & {});
|
|
10
10
|
export declare const OpenAIReasoningEffort: import("effect/Schema").declare<OpenResponsesOptions.ReasoningEffort, OpenResponsesOptions.ReasoningEffort>;
|
|
11
11
|
export declare const OpenAITextVerbosity: import("effect/Schema").declare<OpenResponsesOptions.TextVerbosity, OpenResponsesOptions.TextVerbosity>;
|
|
12
12
|
export declare const OpenAIResponseIncludable: import("effect/Schema").declare<OpenResponsesOptions.ResponseIncludable, OpenResponsesOptions.ResponseIncludable>;
|
|
13
|
-
export declare const OpenAIServiceTier: import("effect/Schema").
|
|
13
|
+
export declare const OpenAIServiceTier: import("effect/Schema").declare<OpenResponsesOptions.ServiceTier, OpenResponsesOptions.ServiceTier>;
|
|
14
14
|
export declare const isReasoningEffort: (effort: unknown) => effort is OpenAIReasoningEffort;
|
|
15
15
|
export declare const resolve: (request: import("../../index.js").LLMRequest) => OpenResponsesOptions.Resolved;
|
|
16
16
|
export * as OpenAIOptions from "./openai-options.js";
|
|
@@ -4,7 +4,7 @@ export const OpenAITextVerbosities = OpenResponsesOptions.TextVerbosities;
|
|
|
4
4
|
// Mirrors OpenAI's `ResponseIncludable` union from the official SDK. Keep this
|
|
5
5
|
// in lockstep with `openai-node/src/resources/responses/responses.ts`.
|
|
6
6
|
export const OpenAIResponseIncludables = OpenResponsesOptions.ResponseIncludables;
|
|
7
|
-
export const OpenAIServiceTiers = OpenResponsesOptions.ServiceTiers;
|
|
7
|
+
export const OpenAIServiceTiers = [...OpenResponsesOptions.ServiceTiers, "scale"];
|
|
8
8
|
export const OpenAIReasoningEffort = OpenResponsesOptions.ReasoningEffort;
|
|
9
9
|
export const OpenAITextVerbosity = OpenResponsesOptions.TextVerbosity;
|
|
10
10
|
export const OpenAIResponseIncludable = OpenResponsesOptions.ResponseIncludableSchema;
|
|
@@ -112,7 +112,7 @@ export declare const protocol: Protocol<{
|
|
|
112
112
|
readonly presence_penalty?: number | undefined;
|
|
113
113
|
readonly safety_identifier?: string | undefined;
|
|
114
114
|
readonly top_logprobs?: number | undefined;
|
|
115
|
-
readonly service_tier?: "
|
|
115
|
+
readonly service_tier?: import("./utils/open-responses-options.js").ServiceTier | undefined;
|
|
116
116
|
readonly max_output_tokens?: number | undefined;
|
|
117
117
|
readonly max_tool_calls?: number | undefined;
|
|
118
118
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -239,31 +239,31 @@ export declare const routes: (RouteDef<{
|
|
|
239
239
|
readonly presence_penalty?: number | undefined;
|
|
240
240
|
readonly safety_identifier?: string | undefined;
|
|
241
241
|
readonly top_logprobs?: number | undefined;
|
|
242
|
-
readonly service_tier?: "
|
|
242
|
+
readonly service_tier?: import("../protocols/utils/open-responses-options.js").ServiceTier | undefined;
|
|
243
243
|
readonly max_output_tokens?: number | undefined;
|
|
244
244
|
readonly max_tool_calls?: number | undefined;
|
|
245
245
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
246
246
|
}, import("../protocols/open-responses-channel.js").Prepared>)[];
|
|
247
247
|
export declare const configure: (input?: Config) => {
|
|
248
248
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
249
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
250
|
-
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
251
|
-
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
249
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
250
|
+
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
251
|
+
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
252
252
|
configure: (input?: Config) => /*elided*/ any;
|
|
253
253
|
};
|
|
254
254
|
export declare const provider: {
|
|
255
255
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
256
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
257
|
-
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
258
|
-
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
256
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
257
|
+
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
258
|
+
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
259
259
|
configure: (input?: Config) => {
|
|
260
260
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
261
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
262
|
-
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
263
|
-
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
261
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
262
|
+
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
263
|
+
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
264
264
|
configure: /*elided*/ any;
|
|
265
265
|
};
|
|
266
266
|
};
|
|
267
267
|
export declare const chatModel: ProviderPackage.Definition<Settings, OpenAIProviderOptionsInput>["model"];
|
|
268
268
|
export declare const responsesModel: ProviderPackage.Definition<Settings, OpenAIProviderOptionsInput>["model"];
|
|
269
|
-
export declare const model: (modelID: string, settings: Settings) => import("../schema/options.js").LanguageModel<import("./
|
|
269
|
+
export declare const model: (modelID: string, settings: Settings) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
@@ -242,29 +242,29 @@ export declare const routes: (RouteDef<{
|
|
|
242
242
|
readonly presence_penalty?: number | undefined;
|
|
243
243
|
readonly safety_identifier?: string | undefined;
|
|
244
244
|
readonly top_logprobs?: number | undefined;
|
|
245
|
-
readonly service_tier?: "
|
|
245
|
+
readonly service_tier?: import("../protocols/utils/open-responses-options.js").ServiceTier | undefined;
|
|
246
246
|
readonly max_output_tokens?: number | undefined;
|
|
247
247
|
readonly max_tool_calls?: number | undefined;
|
|
248
248
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
249
249
|
}, import("../protocols/open-responses-channel.js").Prepared>)[];
|
|
250
250
|
export declare const configure: (input: Config) => {
|
|
251
251
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
252
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
253
|
-
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
254
|
-
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
252
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
253
|
+
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
254
|
+
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
255
255
|
configure: (input: Config) => /*elided*/ any;
|
|
256
256
|
};
|
|
257
257
|
export declare const provider: {
|
|
258
258
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
259
259
|
configure: (input: Config) => {
|
|
260
260
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
261
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
262
|
-
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
263
|
-
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
261
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
262
|
+
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
263
|
+
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
264
264
|
configure: /*elided*/ any;
|
|
265
265
|
};
|
|
266
266
|
};
|
|
267
267
|
export declare const responsesModel: ProviderPackage.Definition<Settings, OpenAIProviderOptionsInput>["model"];
|
|
268
268
|
export declare const chatModel: ProviderPackage.Definition<Settings, OpenAIProviderOptionsInput>["model"];
|
|
269
|
-
export declare const model: (modelID: string, settings: Settings) => import("../schema/options.js").LanguageModel<import("./
|
|
269
|
+
export declare const model: (modelID: string, settings: Settings) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
270
270
|
export {};
|
|
@@ -323,7 +323,7 @@ export declare const CloudflareAIGateway: {
|
|
|
323
323
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
324
324
|
configure: (options: AIGatewayOptions) => {
|
|
325
325
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
326
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
326
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
327
327
|
configure: /*elided*/ any;
|
|
328
328
|
};
|
|
329
329
|
};
|
|
@@ -331,7 +331,7 @@ export declare const CloudflareWorkersAI: {
|
|
|
331
331
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
332
332
|
configure: (options: WorkersAIOptions) => {
|
|
333
333
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
334
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
334
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
335
335
|
configure: /*elided*/ any;
|
|
336
336
|
};
|
|
337
337
|
};
|
|
@@ -117,14 +117,14 @@ export declare const routes: import("../route/client.js").Route<{
|
|
|
117
117
|
}, import("../route/transport/http.js").HttpPrepared<string>>[];
|
|
118
118
|
export declare const configure: (input?: Config) => {
|
|
119
119
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
120
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
120
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
121
121
|
configure: (input?: Config) => /*elided*/ any;
|
|
122
122
|
};
|
|
123
123
|
export declare const provider: {
|
|
124
124
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
125
125
|
configure: (input?: Config) => {
|
|
126
126
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
127
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
127
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
128
128
|
configure: /*elided*/ any;
|
|
129
129
|
};
|
|
130
130
|
};
|
|
@@ -130,7 +130,7 @@ export declare const routes: import("../route/client.js").Route<{
|
|
|
130
130
|
readonly presence_penalty?: number | undefined;
|
|
131
131
|
readonly safety_identifier?: string | undefined;
|
|
132
132
|
readonly top_logprobs?: number | undefined;
|
|
133
|
-
readonly service_tier?: "
|
|
133
|
+
readonly service_tier?: import("../protocols/utils/open-responses-options.js").ServiceTier | undefined;
|
|
134
134
|
readonly max_output_tokens?: number | undefined;
|
|
135
135
|
readonly max_tool_calls?: number | undefined;
|
|
136
136
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -128,7 +128,7 @@ export declare const routes: import("../route/client.js").Route<{
|
|
|
128
128
|
readonly presence_penalty?: number | undefined;
|
|
129
129
|
readonly safety_identifier?: string | undefined;
|
|
130
130
|
readonly top_logprobs?: number | undefined;
|
|
131
|
-
readonly service_tier?: "
|
|
131
|
+
readonly service_tier?: import("../protocols/utils/open-responses-options.js").ServiceTier | undefined;
|
|
132
132
|
readonly max_output_tokens?: number | undefined;
|
|
133
133
|
readonly max_tool_calls?: number | undefined;
|
|
134
134
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -118,51 +118,51 @@ export declare const routes: import("../route/client.js").Route<{
|
|
|
118
118
|
}, import("../route/transport/http.js").HttpPrepared<string>>[];
|
|
119
119
|
export declare const configure: (input: GenericModelOptions) => {
|
|
120
120
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
121
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
121
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
122
122
|
configure: (input: GenericModelOptions) => /*elided*/ any;
|
|
123
123
|
};
|
|
124
124
|
export declare const provider: {
|
|
125
125
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
126
126
|
configure: (input: GenericModelOptions) => {
|
|
127
127
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
128
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
128
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
129
129
|
configure: /*elided*/ any;
|
|
130
130
|
};
|
|
131
131
|
};
|
|
132
132
|
export declare const model: ProviderPackage.Definition<Settings, OpenAIProviderOptionsInput>["model"];
|
|
133
133
|
export declare const baseten: {
|
|
134
134
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
135
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
135
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
136
136
|
configure: (input?: FamilyModelOptions) => /*elided*/ any;
|
|
137
137
|
};
|
|
138
138
|
export declare const cerebras: {
|
|
139
139
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
140
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
140
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
141
141
|
configure: (input?: FamilyModelOptions) => /*elided*/ any;
|
|
142
142
|
};
|
|
143
143
|
export declare const deepinfra: {
|
|
144
144
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
145
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
145
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
146
146
|
configure: (input?: FamilyModelOptions) => /*elided*/ any;
|
|
147
147
|
};
|
|
148
148
|
export declare const deepseek: {
|
|
149
149
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
150
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
150
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
151
151
|
configure: (input?: FamilyModelOptions) => /*elided*/ any;
|
|
152
152
|
};
|
|
153
153
|
export declare const fireworks: {
|
|
154
154
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
155
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
155
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
156
156
|
configure: (input?: FamilyModelOptions) => /*elided*/ any;
|
|
157
157
|
};
|
|
158
158
|
export declare const groq: {
|
|
159
159
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
160
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
160
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
161
161
|
configure: (input?: FamilyModelOptions) => /*elided*/ any;
|
|
162
162
|
};
|
|
163
163
|
export declare const togetherai: {
|
|
164
164
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
165
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
165
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
166
166
|
configure: (input?: FamilyModelOptions) => /*elided*/ any;
|
|
167
167
|
};
|
|
168
168
|
export {};
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { type ProviderOptions } from "../schema/index.js";
|
|
2
|
-
import type {
|
|
2
|
+
import type { OpenAIServiceTier } from "../protocols/utils/openai-options.js";
|
|
3
|
+
import type { Options } from "../protocols/utils/open-responses-options.js";
|
|
3
4
|
export type { OpenAIResponseIncludable, OpenAIServiceTier } from "../protocols/utils/openai-options.js";
|
|
4
|
-
export type OpenAIOptionsInput =
|
|
5
|
+
export type OpenAIOptionsInput = Omit<Options, "serviceTier"> & {
|
|
6
|
+
readonly serviceTier?: OpenAIServiceTier;
|
|
7
|
+
readonly [key: string]: unknown;
|
|
8
|
+
};
|
|
5
9
|
export type OpenAIProviderOptionsInput = OpenAIOptionsInput;
|
|
6
10
|
export declare const gpt5DefaultOptions: (modelID: string, options?: {
|
|
7
11
|
readonly textVerbosity?: boolean;
|
|
@@ -227,7 +227,7 @@ export declare const routes: (Route<{
|
|
|
227
227
|
readonly presence_penalty?: number | undefined;
|
|
228
228
|
readonly safety_identifier?: string | undefined;
|
|
229
229
|
readonly top_logprobs?: number | undefined;
|
|
230
|
-
readonly service_tier?: "
|
|
230
|
+
readonly service_tier?: import("../protocols/utils/open-responses-options.js").ServiceTier | undefined;
|
|
231
231
|
readonly max_output_tokens?: number | undefined;
|
|
232
232
|
readonly max_tool_calls?: number | undefined;
|
|
233
233
|
readonly parallel_tool_calls?: boolean | undefined;
|
|
@@ -258,29 +258,29 @@ export interface Settings extends ProviderPackage.Settings {
|
|
|
258
258
|
}
|
|
259
259
|
export declare const configure: (input?: Config) => {
|
|
260
260
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
261
|
-
model: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
262
|
-
responses: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
263
|
-
chat: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
261
|
+
model: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
262
|
+
responses: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
263
|
+
chat: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
264
264
|
image: (modelID: string | ModelID) => import("../image.js").ImageModel<import("../protocols/openai-images.js").OpenAIImageOptions>;
|
|
265
265
|
configure: (input?: Config) => /*elided*/ any;
|
|
266
266
|
};
|
|
267
267
|
export declare const provider: {
|
|
268
268
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
269
|
-
model: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
270
|
-
responses: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
271
|
-
chat: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
269
|
+
model: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
270
|
+
responses: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
271
|
+
chat: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
272
272
|
image: (modelID: string | ModelID) => import("../image.js").ImageModel<import("../protocols/openai-images.js").OpenAIImageOptions>;
|
|
273
273
|
configure: (input?: Config) => {
|
|
274
274
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
275
|
-
model: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
276
|
-
responses: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
277
|
-
chat: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
275
|
+
model: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
276
|
+
responses: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
277
|
+
chat: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
278
278
|
image: (modelID: string | ModelID) => import("../image.js").ImageModel<import("../protocols/openai-images.js").OpenAIImageOptions>;
|
|
279
279
|
configure: /*elided*/ any;
|
|
280
280
|
};
|
|
281
281
|
};
|
|
282
282
|
export declare const model: ProviderPackage.Definition<Settings, OpenAIProviderOptionsInput>["model"];
|
|
283
283
|
export declare const chatModel: ProviderPackage.Definition<Settings, OpenAIProviderOptionsInput>["model"];
|
|
284
|
-
export declare const responses: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
285
|
-
export declare const chat: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./
|
|
284
|
+
export declare const responses: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
285
|
+
export declare const chat: (id: string | ModelID) => import("../schema/options.js").LanguageModel<import("./openai-options.js").OpenAIOptionsInput>;
|
|
286
286
|
export declare const image: (modelID: string | ModelID) => import("../image.js").ImageModel<import("../protocols/openai-images.js").OpenAIImageOptions>;
|
package/dist/providers/xai.d.ts
CHANGED
|
@@ -114,28 +114,28 @@ export declare const routes: (Route<{
|
|
|
114
114
|
}, import("../route/transport/http.js").HttpPrepared<string>> | Route<unknown, import("../protocols/open-responses-channel.js").Prepared>)[];
|
|
115
115
|
export declare const configure: (input?: LanguageModelOptions) => {
|
|
116
116
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
117
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
118
|
-
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
119
|
-
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
117
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
118
|
+
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
119
|
+
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
120
120
|
image: (modelID: string | ModelID) => import("../image.js").ImageModel<import("../protocols/xai-images.js").XAIImageOptions>;
|
|
121
121
|
configure: (input?: LanguageModelOptions) => /*elided*/ any;
|
|
122
122
|
};
|
|
123
123
|
export declare const provider: {
|
|
124
124
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
125
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
126
|
-
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
127
|
-
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
125
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
126
|
+
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
127
|
+
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
128
128
|
image: (modelID: string | ModelID) => import("../image.js").ImageModel<import("../protocols/xai-images.js").XAIImageOptions>;
|
|
129
129
|
configure: (input?: LanguageModelOptions) => {
|
|
130
130
|
id: string & import("effect/Brand").Brand<"AI.ProviderID">;
|
|
131
|
-
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
132
|
-
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
133
|
-
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
131
|
+
model: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
132
|
+
responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
133
|
+
chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
134
134
|
image: (modelID: string | ModelID) => import("../image.js").ImageModel<import("../protocols/xai-images.js").XAIImageOptions>;
|
|
135
135
|
configure: /*elided*/ any;
|
|
136
136
|
};
|
|
137
137
|
};
|
|
138
138
|
export declare const model: ProviderPackage.Definition<Settings, XAIProviderOptionsInput>["model"];
|
|
139
|
-
export declare const responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
140
|
-
export declare const chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<
|
|
139
|
+
export declare const responses: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
140
|
+
export declare const chat: (modelID: string | ModelID) => import("../schema/options.js").LanguageModel<OpenAIOptionsInput>;
|
|
141
141
|
export declare const image: (modelID: string | ModelID) => import("../image.js").ImageModel<import("../protocols/xai-images.js").XAIImageOptions>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-18002",
|
|
4
4
|
"name": "@opencode-ai/ai",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@clack/prompts": "1.0.0-alpha.1",
|
|
32
32
|
"@effect/platform-node": "4.0.0-rc.110",
|
|
33
|
-
"@opencode-ai/http-recorder": "0.0.0-dev-
|
|
33
|
+
"@opencode-ai/http-recorder": "0.0.0-dev-18002",
|
|
34
34
|
"@tsconfig/bun": "1.0.9",
|
|
35
35
|
"@types/bun": "1.3.13",
|
|
36
36
|
"@typescript/native-preview": "7.0.0-dev.20251207.1",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@smithy/eventstream-codec": "4.2.14",
|
|
41
41
|
"@smithy/util-utf8": "4.2.2",
|
|
42
|
-
"@opencode-ai/schema": "0.0.0-dev-
|
|
42
|
+
"@opencode-ai/schema": "0.0.0-dev-18002",
|
|
43
43
|
"aws4fetch": "1.0.20",
|
|
44
44
|
"effect": "4.0.0-rc.110",
|
|
45
45
|
"google-auth-library": "10.5.0"
|