@marktoflow/integrations 2.0.3 → 2.0.4-alpha.1
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/README.md +65 -16
- package/dist/adapters/claude-agent-types.d.ts +28 -28
- package/dist/adapters/claude-agent-workflow.d.ts +16 -16
- package/dist/adapters/codex-types.d.ts +6 -6
- package/dist/adapters/codex-workflow.d.ts +16 -16
- package/dist/adapters/github-copilot-types.d.ts +21 -21
- package/dist/adapters/github-copilot-workflow.d.ts +12 -12
- package/dist/adapters/ollama-types.d.ts +42 -42
- package/dist/adapters/openai-types.d.ts +552 -33
- package/dist/adapters/openai-types.d.ts.map +1 -1
- package/dist/adapters/openai-types.js +58 -5
- package/dist/adapters/openai-types.js.map +1 -1
- package/dist/adapters/openai.d.ts +59 -5
- package/dist/adapters/openai.d.ts.map +1 -1
- package/dist/adapters/openai.js +211 -32
- package/dist/adapters/openai.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/reliability/circuit-breaker.d.ts +67 -0
- package/dist/reliability/circuit-breaker.d.ts.map +1 -0
- package/dist/reliability/circuit-breaker.js +164 -0
- package/dist/reliability/circuit-breaker.js.map +1 -0
- package/dist/reliability/index.d.ts +3 -1
- package/dist/reliability/index.d.ts.map +1 -1
- package/dist/reliability/index.js +3 -1
- package/dist/reliability/index.js.map +1 -1
- package/dist/reliability/rate-limiter.d.ts +62 -0
- package/dist/reliability/rate-limiter.d.ts.map +1 -0
- package/dist/reliability/rate-limiter.js +194 -0
- package/dist/reliability/rate-limiter.js.map +1 -0
- package/dist/reliability/wrapper.d.ts +9 -0
- package/dist/reliability/wrapper.d.ts.map +1 -1
- package/dist/reliability/wrapper.js +62 -12
- package/dist/reliability/wrapper.js.map +1 -1
- package/dist/services/base-client.d.ts.map +1 -1
- package/dist/services/base-client.js +25 -3
- package/dist/services/base-client.js.map +1 -1
- package/dist/services/discord.d.ts.map +1 -1
- package/dist/services/discord.js +6 -0
- package/dist/services/discord.js.map +1 -1
- package/dist/services/gmail.d.ts.map +1 -1
- package/dist/services/gmail.js +65 -47
- package/dist/services/gmail.js.map +1 -1
- package/dist/services/google-calendar.js +9 -5
- package/dist/services/google-calendar.js.map +1 -1
- package/dist/services/google-docs.js +9 -5
- package/dist/services/google-docs.js.map +1 -1
- package/dist/services/google-drive.js +9 -5
- package/dist/services/google-drive.js.map +1 -1
- package/dist/services/google-sheets.js +9 -5
- package/dist/services/google-sheets.js.map +1 -1
- package/dist/services/http.d.ts.map +1 -1
- package/dist/services/http.js +15 -1
- package/dist/services/http.js.map +1 -1
- package/dist/services/mailchimp.d.ts.map +1 -1
- package/dist/services/mailchimp.js +3 -0
- package/dist/services/mailchimp.js.map +1 -1
- package/dist/services/outlook.d.ts.map +1 -1
- package/dist/services/outlook.js +14 -11
- package/dist/services/outlook.js.map +1 -1
- package/dist/services/playwright/client.d.ts +110 -0
- package/dist/services/playwright/client.d.ts.map +1 -0
- package/dist/services/playwright/client.js +690 -0
- package/dist/services/playwright/client.js.map +1 -0
- package/dist/services/playwright/index.d.ts +7 -0
- package/dist/services/playwright/index.d.ts.map +1 -0
- package/dist/services/playwright/index.js +7 -0
- package/dist/services/playwright/index.js.map +1 -0
- package/dist/services/playwright/initializer.d.ts +24 -0
- package/dist/services/playwright/initializer.d.ts.map +1 -0
- package/dist/services/playwright/initializer.js +99 -0
- package/dist/services/playwright/initializer.js.map +1 -0
- package/dist/services/playwright/types.d.ts +270 -0
- package/dist/services/playwright/types.d.ts.map +1 -0
- package/dist/services/playwright/types.js +5 -0
- package/dist/services/playwright/types.js.map +1 -0
- package/dist/services/playwright.d.ts +3 -675
- package/dist/services/playwright.d.ts.map +1 -1
- package/dist/services/playwright.js +3 -1138
- package/dist/services/playwright.js.map +1 -1
- package/dist/services/rss.d.ts +57 -0
- package/dist/services/rss.d.ts.map +1 -0
- package/dist/services/rss.js +190 -0
- package/dist/services/rss.js.map +1 -0
- package/dist/services/shopify.d.ts.map +1 -1
- package/dist/services/shopify.js +3 -0
- package/dist/services/shopify.js.map +1 -1
- package/dist/services/trello.d.ts.map +1 -1
- package/dist/services/trello.js +7 -1
- package/dist/services/trello.js.map +1 -1
- package/package.json +28 -7
- package/dist/adapters/claude-code.d.ts +0 -34
- package/dist/adapters/claude-code.d.ts.map +0 -1
- package/dist/adapters/claude-code.js +0 -89
- package/dist/adapters/claude-code.js.map +0 -1
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
* Type definitions for OpenAI SDK integration with marktoflow
|
|
3
3
|
*
|
|
4
4
|
* These types enable integration with OpenAI-compatible APIs including
|
|
5
|
-
* OpenAI, VLLM, and other local/remote endpoints.
|
|
5
|
+
* OpenAI, VLLM, llama.cpp, and other local/remote endpoints.
|
|
6
|
+
* Includes full tool calling and structured output support.
|
|
6
7
|
*/
|
|
7
8
|
import { z } from 'zod';
|
|
8
9
|
/**
|
|
@@ -21,13 +22,101 @@ export interface OpenAIClientConfig {
|
|
|
21
22
|
timeout?: number;
|
|
22
23
|
}
|
|
23
24
|
/**
|
|
24
|
-
*
|
|
25
|
+
* Function definition for tool calling
|
|
25
26
|
*/
|
|
26
|
-
export interface
|
|
27
|
-
|
|
27
|
+
export interface OpenAIToolFunction {
|
|
28
|
+
/** The name of the function */
|
|
29
|
+
name: string;
|
|
30
|
+
/** A description of what the function does */
|
|
31
|
+
description?: string;
|
|
32
|
+
/** JSON Schema for the function parameters */
|
|
33
|
+
parameters?: Record<string, unknown>;
|
|
34
|
+
/** Whether to enforce strict schema validation */
|
|
35
|
+
strict?: boolean;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Tool definition
|
|
39
|
+
*/
|
|
40
|
+
export interface OpenAITool {
|
|
41
|
+
/** The type of tool (currently only 'function') */
|
|
42
|
+
type: 'function';
|
|
43
|
+
/** The function definition */
|
|
44
|
+
function: OpenAIToolFunction;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* A tool call requested by the model
|
|
48
|
+
*/
|
|
49
|
+
export interface OpenAIToolCall {
|
|
50
|
+
/** Unique identifier for this tool call */
|
|
51
|
+
id: string;
|
|
52
|
+
/** The type of tool call */
|
|
53
|
+
type: 'function';
|
|
54
|
+
/** The function to call */
|
|
55
|
+
function: {
|
|
56
|
+
/** The name of the function to call */
|
|
57
|
+
name: string;
|
|
58
|
+
/** JSON-encoded arguments for the function */
|
|
59
|
+
arguments: string;
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Tool choice configuration
|
|
64
|
+
*/
|
|
65
|
+
export type OpenAIToolChoice = 'auto' | 'none' | 'required' | {
|
|
66
|
+
type: 'function';
|
|
67
|
+
function: {
|
|
68
|
+
name: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Response format configuration
|
|
73
|
+
*/
|
|
74
|
+
export type OpenAIResponseFormat = {
|
|
75
|
+
type: 'text';
|
|
76
|
+
} | {
|
|
77
|
+
type: 'json_object';
|
|
78
|
+
} | {
|
|
79
|
+
type: 'json_schema';
|
|
80
|
+
json_schema: {
|
|
81
|
+
name: string;
|
|
82
|
+
schema: Record<string, unknown>;
|
|
83
|
+
strict?: boolean;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* Chat message format — supports all message roles including tool messages
|
|
88
|
+
*/
|
|
89
|
+
export type OpenAIChatMessage = {
|
|
90
|
+
role: 'system';
|
|
28
91
|
content: string;
|
|
29
92
|
name?: string;
|
|
30
|
-
}
|
|
93
|
+
} | {
|
|
94
|
+
role: 'user';
|
|
95
|
+
content: string | OpenAIContentPart[];
|
|
96
|
+
name?: string;
|
|
97
|
+
} | {
|
|
98
|
+
role: 'assistant';
|
|
99
|
+
content: string | null;
|
|
100
|
+
name?: string;
|
|
101
|
+
tool_calls?: OpenAIToolCall[];
|
|
102
|
+
} | {
|
|
103
|
+
role: 'tool';
|
|
104
|
+
content: string;
|
|
105
|
+
tool_call_id: string;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* Content part for multimodal messages
|
|
109
|
+
*/
|
|
110
|
+
export type OpenAIContentPart = {
|
|
111
|
+
type: 'text';
|
|
112
|
+
text: string;
|
|
113
|
+
} | {
|
|
114
|
+
type: 'image_url';
|
|
115
|
+
image_url: {
|
|
116
|
+
url: string;
|
|
117
|
+
detail?: 'auto' | 'low' | 'high';
|
|
118
|
+
};
|
|
119
|
+
};
|
|
31
120
|
/**
|
|
32
121
|
* Options for chat completion
|
|
33
122
|
*/
|
|
@@ -50,6 +139,12 @@ export interface OpenAIChatOptions {
|
|
|
50
139
|
frequency_penalty?: number;
|
|
51
140
|
/** Presence penalty (-2 to 2) */
|
|
52
141
|
presence_penalty?: number;
|
|
142
|
+
/** Tools available for the model to call */
|
|
143
|
+
tools?: OpenAITool[];
|
|
144
|
+
/** Controls which tool the model calls */
|
|
145
|
+
tool_choice?: OpenAIToolChoice;
|
|
146
|
+
/** Response format (text, json_object, or json_schema) */
|
|
147
|
+
response_format?: OpenAIResponseFormat;
|
|
53
148
|
}
|
|
54
149
|
/**
|
|
55
150
|
* Chat completion result
|
|
@@ -59,20 +154,25 @@ export interface OpenAIChatResult {
|
|
|
59
154
|
object: string;
|
|
60
155
|
created: number;
|
|
61
156
|
model: string;
|
|
62
|
-
choices:
|
|
63
|
-
index: number;
|
|
64
|
-
message: {
|
|
65
|
-
role: string;
|
|
66
|
-
content: string;
|
|
67
|
-
};
|
|
68
|
-
finish_reason: string;
|
|
69
|
-
}>;
|
|
157
|
+
choices: OpenAIChatChoice[];
|
|
70
158
|
usage?: {
|
|
71
159
|
prompt_tokens: number;
|
|
72
160
|
completion_tokens: number;
|
|
73
161
|
total_tokens: number;
|
|
74
162
|
};
|
|
75
163
|
}
|
|
164
|
+
/**
|
|
165
|
+
* A single choice in a chat completion result
|
|
166
|
+
*/
|
|
167
|
+
export interface OpenAIChatChoice {
|
|
168
|
+
index: number;
|
|
169
|
+
message: {
|
|
170
|
+
role: string;
|
|
171
|
+
content: string | null;
|
|
172
|
+
tool_calls?: OpenAIToolCall[];
|
|
173
|
+
};
|
|
174
|
+
finish_reason: string;
|
|
175
|
+
}
|
|
76
176
|
/**
|
|
77
177
|
* Options for embeddings
|
|
78
178
|
*/
|
|
@@ -98,6 +198,23 @@ export interface OpenAIEmbeddingResult {
|
|
|
98
198
|
total_tokens: number;
|
|
99
199
|
};
|
|
100
200
|
}
|
|
201
|
+
/**
|
|
202
|
+
* Tool executor function type — called when the model requests a tool call
|
|
203
|
+
*/
|
|
204
|
+
export type OpenAIToolExecutor = (name: string, args: Record<string, unknown>) => Promise<unknown>;
|
|
205
|
+
/**
|
|
206
|
+
* Options for the agentic tool calling loop
|
|
207
|
+
*/
|
|
208
|
+
export interface OpenAIToolLoopOptions extends OpenAIChatOptions {
|
|
209
|
+
/** Tools are required for the tool loop */
|
|
210
|
+
tools: OpenAITool[];
|
|
211
|
+
/** Maximum number of tool-calling turns before stopping */
|
|
212
|
+
maxTurns?: number;
|
|
213
|
+
/** Called when a tool call is about to be executed */
|
|
214
|
+
onToolCall?: (toolCall: OpenAIToolCall) => void;
|
|
215
|
+
/** Called when a tool call returns a result */
|
|
216
|
+
onToolResult?: (toolCall: OpenAIToolCall, result: unknown) => void;
|
|
217
|
+
}
|
|
101
218
|
export declare const OpenAIClientConfigSchema: z.ZodObject<{
|
|
102
219
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
103
220
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -107,44 +224,255 @@ export declare const OpenAIClientConfigSchema: z.ZodObject<{
|
|
|
107
224
|
}, "strip", z.ZodTypeAny, {
|
|
108
225
|
timeout?: number | undefined;
|
|
109
226
|
apiKey?: string | undefined;
|
|
110
|
-
organization?: string | undefined;
|
|
111
|
-
model?: string | undefined;
|
|
112
227
|
baseUrl?: string | undefined;
|
|
228
|
+
model?: string | undefined;
|
|
229
|
+
organization?: string | undefined;
|
|
113
230
|
}, {
|
|
114
231
|
timeout?: number | undefined;
|
|
115
232
|
apiKey?: string | undefined;
|
|
116
|
-
organization?: string | undefined;
|
|
117
|
-
model?: string | undefined;
|
|
118
233
|
baseUrl?: string | undefined;
|
|
234
|
+
model?: string | undefined;
|
|
235
|
+
organization?: string | undefined;
|
|
236
|
+
}>;
|
|
237
|
+
export declare const OpenAIToolFunctionSchema: z.ZodObject<{
|
|
238
|
+
name: z.ZodString;
|
|
239
|
+
description: z.ZodOptional<z.ZodString>;
|
|
240
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
241
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
242
|
+
}, "strip", z.ZodTypeAny, {
|
|
243
|
+
name: string;
|
|
244
|
+
description?: string | undefined;
|
|
245
|
+
parameters?: Record<string, unknown> | undefined;
|
|
246
|
+
strict?: boolean | undefined;
|
|
247
|
+
}, {
|
|
248
|
+
name: string;
|
|
249
|
+
description?: string | undefined;
|
|
250
|
+
parameters?: Record<string, unknown> | undefined;
|
|
251
|
+
strict?: boolean | undefined;
|
|
119
252
|
}>;
|
|
120
|
-
export declare const
|
|
121
|
-
|
|
253
|
+
export declare const OpenAIToolSchema: z.ZodObject<{
|
|
254
|
+
type: z.ZodLiteral<"function">;
|
|
255
|
+
function: z.ZodObject<{
|
|
256
|
+
name: z.ZodString;
|
|
257
|
+
description: z.ZodOptional<z.ZodString>;
|
|
258
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
259
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
260
|
+
}, "strip", z.ZodTypeAny, {
|
|
261
|
+
name: string;
|
|
262
|
+
description?: string | undefined;
|
|
263
|
+
parameters?: Record<string, unknown> | undefined;
|
|
264
|
+
strict?: boolean | undefined;
|
|
265
|
+
}, {
|
|
266
|
+
name: string;
|
|
267
|
+
description?: string | undefined;
|
|
268
|
+
parameters?: Record<string, unknown> | undefined;
|
|
269
|
+
strict?: boolean | undefined;
|
|
270
|
+
}>;
|
|
271
|
+
}, "strip", z.ZodTypeAny, {
|
|
272
|
+
function: {
|
|
273
|
+
name: string;
|
|
274
|
+
description?: string | undefined;
|
|
275
|
+
parameters?: Record<string, unknown> | undefined;
|
|
276
|
+
strict?: boolean | undefined;
|
|
277
|
+
};
|
|
278
|
+
type: "function";
|
|
279
|
+
}, {
|
|
280
|
+
function: {
|
|
281
|
+
name: string;
|
|
282
|
+
description?: string | undefined;
|
|
283
|
+
parameters?: Record<string, unknown> | undefined;
|
|
284
|
+
strict?: boolean | undefined;
|
|
285
|
+
};
|
|
286
|
+
type: "function";
|
|
287
|
+
}>;
|
|
288
|
+
export declare const OpenAIChatMessageSchema: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
289
|
+
role: z.ZodLiteral<"system">;
|
|
122
290
|
content: z.ZodString;
|
|
123
291
|
name: z.ZodOptional<z.ZodString>;
|
|
124
292
|
}, "strip", z.ZodTypeAny, {
|
|
125
293
|
content: string;
|
|
126
|
-
role: "system"
|
|
294
|
+
role: "system";
|
|
127
295
|
name?: string | undefined;
|
|
128
296
|
}, {
|
|
129
297
|
content: string;
|
|
130
|
-
role: "system"
|
|
298
|
+
role: "system";
|
|
131
299
|
name?: string | undefined;
|
|
132
|
-
}
|
|
300
|
+
}>, z.ZodObject<{
|
|
301
|
+
role: z.ZodLiteral<"user">;
|
|
302
|
+
content: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodUnknown, "many">]>;
|
|
303
|
+
name: z.ZodOptional<z.ZodString>;
|
|
304
|
+
}, "strip", z.ZodTypeAny, {
|
|
305
|
+
content: string | unknown[];
|
|
306
|
+
role: "user";
|
|
307
|
+
name?: string | undefined;
|
|
308
|
+
}, {
|
|
309
|
+
content: string | unknown[];
|
|
310
|
+
role: "user";
|
|
311
|
+
name?: string | undefined;
|
|
312
|
+
}>, z.ZodObject<{
|
|
313
|
+
role: z.ZodLiteral<"assistant">;
|
|
314
|
+
content: z.ZodNullable<z.ZodString>;
|
|
315
|
+
name: z.ZodOptional<z.ZodString>;
|
|
316
|
+
tool_calls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
317
|
+
id: z.ZodString;
|
|
318
|
+
type: z.ZodLiteral<"function">;
|
|
319
|
+
function: z.ZodObject<{
|
|
320
|
+
name: z.ZodString;
|
|
321
|
+
arguments: z.ZodString;
|
|
322
|
+
}, "strip", z.ZodTypeAny, {
|
|
323
|
+
name: string;
|
|
324
|
+
arguments: string;
|
|
325
|
+
}, {
|
|
326
|
+
name: string;
|
|
327
|
+
arguments: string;
|
|
328
|
+
}>;
|
|
329
|
+
}, "strip", z.ZodTypeAny, {
|
|
330
|
+
function: {
|
|
331
|
+
name: string;
|
|
332
|
+
arguments: string;
|
|
333
|
+
};
|
|
334
|
+
type: "function";
|
|
335
|
+
id: string;
|
|
336
|
+
}, {
|
|
337
|
+
function: {
|
|
338
|
+
name: string;
|
|
339
|
+
arguments: string;
|
|
340
|
+
};
|
|
341
|
+
type: "function";
|
|
342
|
+
id: string;
|
|
343
|
+
}>, "many">>;
|
|
344
|
+
}, "strip", z.ZodTypeAny, {
|
|
345
|
+
content: string | null;
|
|
346
|
+
role: "assistant";
|
|
347
|
+
name?: string | undefined;
|
|
348
|
+
tool_calls?: {
|
|
349
|
+
function: {
|
|
350
|
+
name: string;
|
|
351
|
+
arguments: string;
|
|
352
|
+
};
|
|
353
|
+
type: "function";
|
|
354
|
+
id: string;
|
|
355
|
+
}[] | undefined;
|
|
356
|
+
}, {
|
|
357
|
+
content: string | null;
|
|
358
|
+
role: "assistant";
|
|
359
|
+
name?: string | undefined;
|
|
360
|
+
tool_calls?: {
|
|
361
|
+
function: {
|
|
362
|
+
name: string;
|
|
363
|
+
arguments: string;
|
|
364
|
+
};
|
|
365
|
+
type: "function";
|
|
366
|
+
id: string;
|
|
367
|
+
}[] | undefined;
|
|
368
|
+
}>, z.ZodObject<{
|
|
369
|
+
role: z.ZodLiteral<"tool">;
|
|
370
|
+
content: z.ZodString;
|
|
371
|
+
tool_call_id: z.ZodString;
|
|
372
|
+
}, "strip", z.ZodTypeAny, {
|
|
373
|
+
content: string;
|
|
374
|
+
role: "tool";
|
|
375
|
+
tool_call_id: string;
|
|
376
|
+
}, {
|
|
377
|
+
content: string;
|
|
378
|
+
role: "tool";
|
|
379
|
+
tool_call_id: string;
|
|
380
|
+
}>]>;
|
|
133
381
|
export declare const OpenAIChatOptionsSchema: z.ZodObject<{
|
|
134
382
|
model: z.ZodOptional<z.ZodString>;
|
|
135
|
-
messages: z.ZodArray<z.ZodObject<{
|
|
136
|
-
role: z.
|
|
383
|
+
messages: z.ZodArray<z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
384
|
+
role: z.ZodLiteral<"system">;
|
|
137
385
|
content: z.ZodString;
|
|
138
386
|
name: z.ZodOptional<z.ZodString>;
|
|
139
387
|
}, "strip", z.ZodTypeAny, {
|
|
140
388
|
content: string;
|
|
141
|
-
role: "system"
|
|
389
|
+
role: "system";
|
|
142
390
|
name?: string | undefined;
|
|
143
391
|
}, {
|
|
144
392
|
content: string;
|
|
145
|
-
role: "system"
|
|
393
|
+
role: "system";
|
|
394
|
+
name?: string | undefined;
|
|
395
|
+
}>, z.ZodObject<{
|
|
396
|
+
role: z.ZodLiteral<"user">;
|
|
397
|
+
content: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodUnknown, "many">]>;
|
|
398
|
+
name: z.ZodOptional<z.ZodString>;
|
|
399
|
+
}, "strip", z.ZodTypeAny, {
|
|
400
|
+
content: string | unknown[];
|
|
401
|
+
role: "user";
|
|
402
|
+
name?: string | undefined;
|
|
403
|
+
}, {
|
|
404
|
+
content: string | unknown[];
|
|
405
|
+
role: "user";
|
|
146
406
|
name?: string | undefined;
|
|
147
|
-
}>,
|
|
407
|
+
}>, z.ZodObject<{
|
|
408
|
+
role: z.ZodLiteral<"assistant">;
|
|
409
|
+
content: z.ZodNullable<z.ZodString>;
|
|
410
|
+
name: z.ZodOptional<z.ZodString>;
|
|
411
|
+
tool_calls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
412
|
+
id: z.ZodString;
|
|
413
|
+
type: z.ZodLiteral<"function">;
|
|
414
|
+
function: z.ZodObject<{
|
|
415
|
+
name: z.ZodString;
|
|
416
|
+
arguments: z.ZodString;
|
|
417
|
+
}, "strip", z.ZodTypeAny, {
|
|
418
|
+
name: string;
|
|
419
|
+
arguments: string;
|
|
420
|
+
}, {
|
|
421
|
+
name: string;
|
|
422
|
+
arguments: string;
|
|
423
|
+
}>;
|
|
424
|
+
}, "strip", z.ZodTypeAny, {
|
|
425
|
+
function: {
|
|
426
|
+
name: string;
|
|
427
|
+
arguments: string;
|
|
428
|
+
};
|
|
429
|
+
type: "function";
|
|
430
|
+
id: string;
|
|
431
|
+
}, {
|
|
432
|
+
function: {
|
|
433
|
+
name: string;
|
|
434
|
+
arguments: string;
|
|
435
|
+
};
|
|
436
|
+
type: "function";
|
|
437
|
+
id: string;
|
|
438
|
+
}>, "many">>;
|
|
439
|
+
}, "strip", z.ZodTypeAny, {
|
|
440
|
+
content: string | null;
|
|
441
|
+
role: "assistant";
|
|
442
|
+
name?: string | undefined;
|
|
443
|
+
tool_calls?: {
|
|
444
|
+
function: {
|
|
445
|
+
name: string;
|
|
446
|
+
arguments: string;
|
|
447
|
+
};
|
|
448
|
+
type: "function";
|
|
449
|
+
id: string;
|
|
450
|
+
}[] | undefined;
|
|
451
|
+
}, {
|
|
452
|
+
content: string | null;
|
|
453
|
+
role: "assistant";
|
|
454
|
+
name?: string | undefined;
|
|
455
|
+
tool_calls?: {
|
|
456
|
+
function: {
|
|
457
|
+
name: string;
|
|
458
|
+
arguments: string;
|
|
459
|
+
};
|
|
460
|
+
type: "function";
|
|
461
|
+
id: string;
|
|
462
|
+
}[] | undefined;
|
|
463
|
+
}>, z.ZodObject<{
|
|
464
|
+
role: z.ZodLiteral<"tool">;
|
|
465
|
+
content: z.ZodString;
|
|
466
|
+
tool_call_id: z.ZodString;
|
|
467
|
+
}, "strip", z.ZodTypeAny, {
|
|
468
|
+
content: string;
|
|
469
|
+
role: "tool";
|
|
470
|
+
tool_call_id: string;
|
|
471
|
+
}, {
|
|
472
|
+
content: string;
|
|
473
|
+
role: "tool";
|
|
474
|
+
tool_call_id: string;
|
|
475
|
+
}>]>, "many">;
|
|
148
476
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
149
477
|
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
150
478
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -152,13 +480,139 @@ export declare const OpenAIChatOptionsSchema: z.ZodObject<{
|
|
|
152
480
|
stop: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
153
481
|
frequency_penalty: z.ZodOptional<z.ZodNumber>;
|
|
154
482
|
presence_penalty: z.ZodOptional<z.ZodNumber>;
|
|
483
|
+
tools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
484
|
+
type: z.ZodLiteral<"function">;
|
|
485
|
+
function: z.ZodObject<{
|
|
486
|
+
name: z.ZodString;
|
|
487
|
+
description: z.ZodOptional<z.ZodString>;
|
|
488
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
489
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
490
|
+
}, "strip", z.ZodTypeAny, {
|
|
491
|
+
name: string;
|
|
492
|
+
description?: string | undefined;
|
|
493
|
+
parameters?: Record<string, unknown> | undefined;
|
|
494
|
+
strict?: boolean | undefined;
|
|
495
|
+
}, {
|
|
496
|
+
name: string;
|
|
497
|
+
description?: string | undefined;
|
|
498
|
+
parameters?: Record<string, unknown> | undefined;
|
|
499
|
+
strict?: boolean | undefined;
|
|
500
|
+
}>;
|
|
501
|
+
}, "strip", z.ZodTypeAny, {
|
|
502
|
+
function: {
|
|
503
|
+
name: string;
|
|
504
|
+
description?: string | undefined;
|
|
505
|
+
parameters?: Record<string, unknown> | undefined;
|
|
506
|
+
strict?: boolean | undefined;
|
|
507
|
+
};
|
|
508
|
+
type: "function";
|
|
509
|
+
}, {
|
|
510
|
+
function: {
|
|
511
|
+
name: string;
|
|
512
|
+
description?: string | undefined;
|
|
513
|
+
parameters?: Record<string, unknown> | undefined;
|
|
514
|
+
strict?: boolean | undefined;
|
|
515
|
+
};
|
|
516
|
+
type: "function";
|
|
517
|
+
}>, "many">>;
|
|
518
|
+
tool_choice: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["auto", "none", "required"]>, z.ZodObject<{
|
|
519
|
+
type: z.ZodLiteral<"function">;
|
|
520
|
+
function: z.ZodObject<{
|
|
521
|
+
name: z.ZodString;
|
|
522
|
+
}, "strip", z.ZodTypeAny, {
|
|
523
|
+
name: string;
|
|
524
|
+
}, {
|
|
525
|
+
name: string;
|
|
526
|
+
}>;
|
|
527
|
+
}, "strip", z.ZodTypeAny, {
|
|
528
|
+
function: {
|
|
529
|
+
name: string;
|
|
530
|
+
};
|
|
531
|
+
type: "function";
|
|
532
|
+
}, {
|
|
533
|
+
function: {
|
|
534
|
+
name: string;
|
|
535
|
+
};
|
|
536
|
+
type: "function";
|
|
537
|
+
}>]>>;
|
|
538
|
+
response_format: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
539
|
+
type: z.ZodLiteral<"text">;
|
|
540
|
+
}, "strip", z.ZodTypeAny, {
|
|
541
|
+
type: "text";
|
|
542
|
+
}, {
|
|
543
|
+
type: "text";
|
|
544
|
+
}>, z.ZodObject<{
|
|
545
|
+
type: z.ZodLiteral<"json_object">;
|
|
546
|
+
}, "strip", z.ZodTypeAny, {
|
|
547
|
+
type: "json_object";
|
|
548
|
+
}, {
|
|
549
|
+
type: "json_object";
|
|
550
|
+
}>, z.ZodObject<{
|
|
551
|
+
type: z.ZodLiteral<"json_schema">;
|
|
552
|
+
json_schema: z.ZodObject<{
|
|
553
|
+
name: z.ZodString;
|
|
554
|
+
schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
555
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
556
|
+
}, "strip", z.ZodTypeAny, {
|
|
557
|
+
name: string;
|
|
558
|
+
schema: Record<string, unknown>;
|
|
559
|
+
strict?: boolean | undefined;
|
|
560
|
+
}, {
|
|
561
|
+
name: string;
|
|
562
|
+
schema: Record<string, unknown>;
|
|
563
|
+
strict?: boolean | undefined;
|
|
564
|
+
}>;
|
|
565
|
+
}, "strip", z.ZodTypeAny, {
|
|
566
|
+
type: "json_schema";
|
|
567
|
+
json_schema: {
|
|
568
|
+
name: string;
|
|
569
|
+
schema: Record<string, unknown>;
|
|
570
|
+
strict?: boolean | undefined;
|
|
571
|
+
};
|
|
572
|
+
}, {
|
|
573
|
+
type: "json_schema";
|
|
574
|
+
json_schema: {
|
|
575
|
+
name: string;
|
|
576
|
+
schema: Record<string, unknown>;
|
|
577
|
+
strict?: boolean | undefined;
|
|
578
|
+
};
|
|
579
|
+
}>]>>;
|
|
155
580
|
}, "strip", z.ZodTypeAny, {
|
|
156
|
-
messages: {
|
|
581
|
+
messages: ({
|
|
157
582
|
content: string;
|
|
158
|
-
role: "system"
|
|
583
|
+
role: "system";
|
|
584
|
+
name?: string | undefined;
|
|
585
|
+
} | {
|
|
586
|
+
content: string | unknown[];
|
|
587
|
+
role: "user";
|
|
159
588
|
name?: string | undefined;
|
|
160
|
-
}
|
|
589
|
+
} | {
|
|
590
|
+
content: string | null;
|
|
591
|
+
role: "assistant";
|
|
592
|
+
name?: string | undefined;
|
|
593
|
+
tool_calls?: {
|
|
594
|
+
function: {
|
|
595
|
+
name: string;
|
|
596
|
+
arguments: string;
|
|
597
|
+
};
|
|
598
|
+
type: "function";
|
|
599
|
+
id: string;
|
|
600
|
+
}[] | undefined;
|
|
601
|
+
} | {
|
|
602
|
+
content: string;
|
|
603
|
+
role: "tool";
|
|
604
|
+
tool_call_id: string;
|
|
605
|
+
})[];
|
|
161
606
|
model?: string | undefined;
|
|
607
|
+
tools?: {
|
|
608
|
+
function: {
|
|
609
|
+
name: string;
|
|
610
|
+
description?: string | undefined;
|
|
611
|
+
parameters?: Record<string, unknown> | undefined;
|
|
612
|
+
strict?: boolean | undefined;
|
|
613
|
+
};
|
|
614
|
+
type: "function";
|
|
615
|
+
}[] | undefined;
|
|
162
616
|
temperature?: number | undefined;
|
|
163
617
|
max_tokens?: number | undefined;
|
|
164
618
|
top_p?: number | undefined;
|
|
@@ -166,13 +620,60 @@ export declare const OpenAIChatOptionsSchema: z.ZodObject<{
|
|
|
166
620
|
stop?: string | string[] | undefined;
|
|
167
621
|
frequency_penalty?: number | undefined;
|
|
168
622
|
presence_penalty?: number | undefined;
|
|
623
|
+
tool_choice?: "auto" | "required" | "none" | {
|
|
624
|
+
function: {
|
|
625
|
+
name: string;
|
|
626
|
+
};
|
|
627
|
+
type: "function";
|
|
628
|
+
} | undefined;
|
|
629
|
+
response_format?: {
|
|
630
|
+
type: "text";
|
|
631
|
+
} | {
|
|
632
|
+
type: "json_object";
|
|
633
|
+
} | {
|
|
634
|
+
type: "json_schema";
|
|
635
|
+
json_schema: {
|
|
636
|
+
name: string;
|
|
637
|
+
schema: Record<string, unknown>;
|
|
638
|
+
strict?: boolean | undefined;
|
|
639
|
+
};
|
|
640
|
+
} | undefined;
|
|
169
641
|
}, {
|
|
170
|
-
messages: {
|
|
642
|
+
messages: ({
|
|
171
643
|
content: string;
|
|
172
|
-
role: "system"
|
|
644
|
+
role: "system";
|
|
645
|
+
name?: string | undefined;
|
|
646
|
+
} | {
|
|
647
|
+
content: string | unknown[];
|
|
648
|
+
role: "user";
|
|
173
649
|
name?: string | undefined;
|
|
174
|
-
}
|
|
650
|
+
} | {
|
|
651
|
+
content: string | null;
|
|
652
|
+
role: "assistant";
|
|
653
|
+
name?: string | undefined;
|
|
654
|
+
tool_calls?: {
|
|
655
|
+
function: {
|
|
656
|
+
name: string;
|
|
657
|
+
arguments: string;
|
|
658
|
+
};
|
|
659
|
+
type: "function";
|
|
660
|
+
id: string;
|
|
661
|
+
}[] | undefined;
|
|
662
|
+
} | {
|
|
663
|
+
content: string;
|
|
664
|
+
role: "tool";
|
|
665
|
+
tool_call_id: string;
|
|
666
|
+
})[];
|
|
175
667
|
model?: string | undefined;
|
|
668
|
+
tools?: {
|
|
669
|
+
function: {
|
|
670
|
+
name: string;
|
|
671
|
+
description?: string | undefined;
|
|
672
|
+
parameters?: Record<string, unknown> | undefined;
|
|
673
|
+
strict?: boolean | undefined;
|
|
674
|
+
};
|
|
675
|
+
type: "function";
|
|
676
|
+
}[] | undefined;
|
|
176
677
|
temperature?: number | undefined;
|
|
177
678
|
max_tokens?: number | undefined;
|
|
178
679
|
top_p?: number | undefined;
|
|
@@ -180,6 +681,24 @@ export declare const OpenAIChatOptionsSchema: z.ZodObject<{
|
|
|
180
681
|
stop?: string | string[] | undefined;
|
|
181
682
|
frequency_penalty?: number | undefined;
|
|
182
683
|
presence_penalty?: number | undefined;
|
|
684
|
+
tool_choice?: "auto" | "required" | "none" | {
|
|
685
|
+
function: {
|
|
686
|
+
name: string;
|
|
687
|
+
};
|
|
688
|
+
type: "function";
|
|
689
|
+
} | undefined;
|
|
690
|
+
response_format?: {
|
|
691
|
+
type: "text";
|
|
692
|
+
} | {
|
|
693
|
+
type: "json_object";
|
|
694
|
+
} | {
|
|
695
|
+
type: "json_schema";
|
|
696
|
+
json_schema: {
|
|
697
|
+
name: string;
|
|
698
|
+
schema: Record<string, unknown>;
|
|
699
|
+
strict?: boolean | undefined;
|
|
700
|
+
};
|
|
701
|
+
} | undefined;
|
|
183
702
|
}>;
|
|
184
703
|
export declare const OpenAIEmbeddingOptionsSchema: z.ZodObject<{
|
|
185
704
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openai-types.d.ts","sourceRoot":"","sources":["../../src/adapters/openai-types.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"openai-types.d.ts","sourceRoot":"","sources":["../../src/adapters/openai-types.ts"],"names":[],"mappings":"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"}
|