@apicity/kimicoding 0.1.0-alpha.0

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.
@@ -0,0 +1,628 @@
1
+ import { z } from "zod";
2
+ export declare const Base64ImageSourceSchema: z.ZodObject<{
3
+ type: z.ZodLiteral<"base64">;
4
+ media_type: z.ZodEnum<["image/jpeg", "image/png", "image/gif", "image/webp"]>;
5
+ data: z.ZodString;
6
+ }, "strip", z.ZodTypeAny, {
7
+ type: "base64";
8
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
9
+ data: string;
10
+ }, {
11
+ type: "base64";
12
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
13
+ data: string;
14
+ }>;
15
+ export declare const UrlImageSourceSchema: z.ZodObject<{
16
+ type: z.ZodLiteral<"url">;
17
+ url: z.ZodString;
18
+ }, "strip", z.ZodTypeAny, {
19
+ type: "url";
20
+ url: string;
21
+ }, {
22
+ type: "url";
23
+ url: string;
24
+ }>;
25
+ export declare const ImageSourceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
26
+ type: z.ZodLiteral<"base64">;
27
+ media_type: z.ZodEnum<["image/jpeg", "image/png", "image/gif", "image/webp"]>;
28
+ data: z.ZodString;
29
+ }, "strip", z.ZodTypeAny, {
30
+ type: "base64";
31
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
32
+ data: string;
33
+ }, {
34
+ type: "base64";
35
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
36
+ data: string;
37
+ }>, z.ZodObject<{
38
+ type: z.ZodLiteral<"url">;
39
+ url: z.ZodString;
40
+ }, "strip", z.ZodTypeAny, {
41
+ type: "url";
42
+ url: string;
43
+ }, {
44
+ type: "url";
45
+ url: string;
46
+ }>]>;
47
+ export declare const TextContentBlockSchema: z.ZodObject<{
48
+ type: z.ZodLiteral<"text">;
49
+ text: z.ZodString;
50
+ }, "strip", z.ZodTypeAny, {
51
+ type: "text";
52
+ text: string;
53
+ }, {
54
+ type: "text";
55
+ text: string;
56
+ }>;
57
+ export declare const ImageContentBlockSchema: z.ZodObject<{
58
+ type: z.ZodLiteral<"image">;
59
+ source: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
60
+ type: z.ZodLiteral<"base64">;
61
+ media_type: z.ZodEnum<["image/jpeg", "image/png", "image/gif", "image/webp"]>;
62
+ data: z.ZodString;
63
+ }, "strip", z.ZodTypeAny, {
64
+ type: "base64";
65
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
66
+ data: string;
67
+ }, {
68
+ type: "base64";
69
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
70
+ data: string;
71
+ }>, z.ZodObject<{
72
+ type: z.ZodLiteral<"url">;
73
+ url: z.ZodString;
74
+ }, "strip", z.ZodTypeAny, {
75
+ type: "url";
76
+ url: string;
77
+ }, {
78
+ type: "url";
79
+ url: string;
80
+ }>]>;
81
+ }, "strip", z.ZodTypeAny, {
82
+ type: "image";
83
+ source: {
84
+ type: "base64";
85
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
86
+ data: string;
87
+ } | {
88
+ type: "url";
89
+ url: string;
90
+ };
91
+ }, {
92
+ type: "image";
93
+ source: {
94
+ type: "base64";
95
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
96
+ data: string;
97
+ } | {
98
+ type: "url";
99
+ url: string;
100
+ };
101
+ }>;
102
+ export declare const ContentBlockSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
103
+ type: z.ZodLiteral<"text">;
104
+ text: z.ZodString;
105
+ }, "strip", z.ZodTypeAny, {
106
+ type: "text";
107
+ text: string;
108
+ }, {
109
+ type: "text";
110
+ text: string;
111
+ }>, z.ZodObject<{
112
+ type: z.ZodLiteral<"image">;
113
+ source: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
114
+ type: z.ZodLiteral<"base64">;
115
+ media_type: z.ZodEnum<["image/jpeg", "image/png", "image/gif", "image/webp"]>;
116
+ data: z.ZodString;
117
+ }, "strip", z.ZodTypeAny, {
118
+ type: "base64";
119
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
120
+ data: string;
121
+ }, {
122
+ type: "base64";
123
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
124
+ data: string;
125
+ }>, z.ZodObject<{
126
+ type: z.ZodLiteral<"url">;
127
+ url: z.ZodString;
128
+ }, "strip", z.ZodTypeAny, {
129
+ type: "url";
130
+ url: string;
131
+ }, {
132
+ type: "url";
133
+ url: string;
134
+ }>]>;
135
+ }, "strip", z.ZodTypeAny, {
136
+ type: "image";
137
+ source: {
138
+ type: "base64";
139
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
140
+ data: string;
141
+ } | {
142
+ type: "url";
143
+ url: string;
144
+ };
145
+ }, {
146
+ type: "image";
147
+ source: {
148
+ type: "base64";
149
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
150
+ data: string;
151
+ } | {
152
+ type: "url";
153
+ url: string;
154
+ };
155
+ }>]>;
156
+ export declare const ChatMessageSchema: z.ZodObject<{
157
+ role: z.ZodEnum<["user", "assistant"]>;
158
+ content: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
159
+ type: z.ZodLiteral<"text">;
160
+ text: z.ZodString;
161
+ }, "strip", z.ZodTypeAny, {
162
+ type: "text";
163
+ text: string;
164
+ }, {
165
+ type: "text";
166
+ text: string;
167
+ }>, z.ZodObject<{
168
+ type: z.ZodLiteral<"image">;
169
+ source: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
170
+ type: z.ZodLiteral<"base64">;
171
+ media_type: z.ZodEnum<["image/jpeg", "image/png", "image/gif", "image/webp"]>;
172
+ data: z.ZodString;
173
+ }, "strip", z.ZodTypeAny, {
174
+ type: "base64";
175
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
176
+ data: string;
177
+ }, {
178
+ type: "base64";
179
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
180
+ data: string;
181
+ }>, z.ZodObject<{
182
+ type: z.ZodLiteral<"url">;
183
+ url: z.ZodString;
184
+ }, "strip", z.ZodTypeAny, {
185
+ type: "url";
186
+ url: string;
187
+ }, {
188
+ type: "url";
189
+ url: string;
190
+ }>]>;
191
+ }, "strip", z.ZodTypeAny, {
192
+ type: "image";
193
+ source: {
194
+ type: "base64";
195
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
196
+ data: string;
197
+ } | {
198
+ type: "url";
199
+ url: string;
200
+ };
201
+ }, {
202
+ type: "image";
203
+ source: {
204
+ type: "base64";
205
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
206
+ data: string;
207
+ } | {
208
+ type: "url";
209
+ url: string;
210
+ };
211
+ }>]>, "many">]>;
212
+ }, "strip", z.ZodTypeAny, {
213
+ role: "user" | "assistant";
214
+ content: string | ({
215
+ type: "text";
216
+ text: string;
217
+ } | {
218
+ type: "image";
219
+ source: {
220
+ type: "base64";
221
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
222
+ data: string;
223
+ } | {
224
+ type: "url";
225
+ url: string;
226
+ };
227
+ })[];
228
+ }, {
229
+ role: "user" | "assistant";
230
+ content: string | ({
231
+ type: "text";
232
+ text: string;
233
+ } | {
234
+ type: "image";
235
+ source: {
236
+ type: "base64";
237
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
238
+ data: string;
239
+ } | {
240
+ type: "url";
241
+ url: string;
242
+ };
243
+ })[];
244
+ }>;
245
+ export declare const ChatRequestSchema: z.ZodObject<{
246
+ model: z.ZodString;
247
+ messages: z.ZodArray<z.ZodObject<{
248
+ role: z.ZodEnum<["user", "assistant"]>;
249
+ content: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
250
+ type: z.ZodLiteral<"text">;
251
+ text: z.ZodString;
252
+ }, "strip", z.ZodTypeAny, {
253
+ type: "text";
254
+ text: string;
255
+ }, {
256
+ type: "text";
257
+ text: string;
258
+ }>, z.ZodObject<{
259
+ type: z.ZodLiteral<"image">;
260
+ source: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
261
+ type: z.ZodLiteral<"base64">;
262
+ media_type: z.ZodEnum<["image/jpeg", "image/png", "image/gif", "image/webp"]>;
263
+ data: z.ZodString;
264
+ }, "strip", z.ZodTypeAny, {
265
+ type: "base64";
266
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
267
+ data: string;
268
+ }, {
269
+ type: "base64";
270
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
271
+ data: string;
272
+ }>, z.ZodObject<{
273
+ type: z.ZodLiteral<"url">;
274
+ url: z.ZodString;
275
+ }, "strip", z.ZodTypeAny, {
276
+ type: "url";
277
+ url: string;
278
+ }, {
279
+ type: "url";
280
+ url: string;
281
+ }>]>;
282
+ }, "strip", z.ZodTypeAny, {
283
+ type: "image";
284
+ source: {
285
+ type: "base64";
286
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
287
+ data: string;
288
+ } | {
289
+ type: "url";
290
+ url: string;
291
+ };
292
+ }, {
293
+ type: "image";
294
+ source: {
295
+ type: "base64";
296
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
297
+ data: string;
298
+ } | {
299
+ type: "url";
300
+ url: string;
301
+ };
302
+ }>]>, "many">]>;
303
+ }, "strip", z.ZodTypeAny, {
304
+ role: "user" | "assistant";
305
+ content: string | ({
306
+ type: "text";
307
+ text: string;
308
+ } | {
309
+ type: "image";
310
+ source: {
311
+ type: "base64";
312
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
313
+ data: string;
314
+ } | {
315
+ type: "url";
316
+ url: string;
317
+ };
318
+ })[];
319
+ }, {
320
+ role: "user" | "assistant";
321
+ content: string | ({
322
+ type: "text";
323
+ text: string;
324
+ } | {
325
+ type: "image";
326
+ source: {
327
+ type: "base64";
328
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
329
+ data: string;
330
+ } | {
331
+ type: "url";
332
+ url: string;
333
+ };
334
+ })[];
335
+ }>, "many">;
336
+ max_tokens: z.ZodNumber;
337
+ system: z.ZodOptional<z.ZodString>;
338
+ temperature: z.ZodOptional<z.ZodNumber>;
339
+ top_p: z.ZodOptional<z.ZodNumber>;
340
+ stop_sequences: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
341
+ stream: z.ZodOptional<z.ZodBoolean>;
342
+ }, "strip", z.ZodTypeAny, {
343
+ model: string;
344
+ messages: {
345
+ role: "user" | "assistant";
346
+ content: string | ({
347
+ type: "text";
348
+ text: string;
349
+ } | {
350
+ type: "image";
351
+ source: {
352
+ type: "base64";
353
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
354
+ data: string;
355
+ } | {
356
+ type: "url";
357
+ url: string;
358
+ };
359
+ })[];
360
+ }[];
361
+ max_tokens: number;
362
+ system?: string | undefined;
363
+ temperature?: number | undefined;
364
+ top_p?: number | undefined;
365
+ stop_sequences?: string[] | undefined;
366
+ stream?: boolean | undefined;
367
+ }, {
368
+ model: string;
369
+ messages: {
370
+ role: "user" | "assistant";
371
+ content: string | ({
372
+ type: "text";
373
+ text: string;
374
+ } | {
375
+ type: "image";
376
+ source: {
377
+ type: "base64";
378
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
379
+ data: string;
380
+ } | {
381
+ type: "url";
382
+ url: string;
383
+ };
384
+ })[];
385
+ }[];
386
+ max_tokens: number;
387
+ system?: string | undefined;
388
+ temperature?: number | undefined;
389
+ top_p?: number | undefined;
390
+ stop_sequences?: string[] | undefined;
391
+ stream?: boolean | undefined;
392
+ }>;
393
+ export declare const EmbeddingRequestSchema: z.ZodObject<{
394
+ input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>;
395
+ model: z.ZodString;
396
+ encoding_format: z.ZodOptional<z.ZodEnum<["float", "base64"]>>;
397
+ dimensions: z.ZodOptional<z.ZodNumber>;
398
+ user: z.ZodOptional<z.ZodString>;
399
+ }, "strip", z.ZodTypeAny, {
400
+ model: string;
401
+ input: string | string[] | number[] | number[][];
402
+ user?: string | undefined;
403
+ encoding_format?: "float" | "base64" | undefined;
404
+ dimensions?: number | undefined;
405
+ }, {
406
+ model: string;
407
+ input: string | string[] | number[] | number[][];
408
+ user?: string | undefined;
409
+ encoding_format?: "float" | "base64" | undefined;
410
+ dimensions?: number | undefined;
411
+ }>;
412
+ export declare const CountTokensRequestSchema: z.ZodObject<{
413
+ model: z.ZodString;
414
+ messages: z.ZodArray<z.ZodObject<{
415
+ role: z.ZodEnum<["user", "assistant"]>;
416
+ content: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
417
+ type: z.ZodLiteral<"text">;
418
+ text: z.ZodString;
419
+ }, "strip", z.ZodTypeAny, {
420
+ type: "text";
421
+ text: string;
422
+ }, {
423
+ type: "text";
424
+ text: string;
425
+ }>, z.ZodObject<{
426
+ type: z.ZodLiteral<"image">;
427
+ source: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
428
+ type: z.ZodLiteral<"base64">;
429
+ media_type: z.ZodEnum<["image/jpeg", "image/png", "image/gif", "image/webp"]>;
430
+ data: z.ZodString;
431
+ }, "strip", z.ZodTypeAny, {
432
+ type: "base64";
433
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
434
+ data: string;
435
+ }, {
436
+ type: "base64";
437
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
438
+ data: string;
439
+ }>, z.ZodObject<{
440
+ type: z.ZodLiteral<"url">;
441
+ url: z.ZodString;
442
+ }, "strip", z.ZodTypeAny, {
443
+ type: "url";
444
+ url: string;
445
+ }, {
446
+ type: "url";
447
+ url: string;
448
+ }>]>;
449
+ }, "strip", z.ZodTypeAny, {
450
+ type: "image";
451
+ source: {
452
+ type: "base64";
453
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
454
+ data: string;
455
+ } | {
456
+ type: "url";
457
+ url: string;
458
+ };
459
+ }, {
460
+ type: "image";
461
+ source: {
462
+ type: "base64";
463
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
464
+ data: string;
465
+ } | {
466
+ type: "url";
467
+ url: string;
468
+ };
469
+ }>]>, "many">]>;
470
+ }, "strip", z.ZodTypeAny, {
471
+ role: "user" | "assistant";
472
+ content: string | ({
473
+ type: "text";
474
+ text: string;
475
+ } | {
476
+ type: "image";
477
+ source: {
478
+ type: "base64";
479
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
480
+ data: string;
481
+ } | {
482
+ type: "url";
483
+ url: string;
484
+ };
485
+ })[];
486
+ }, {
487
+ role: "user" | "assistant";
488
+ content: string | ({
489
+ type: "text";
490
+ text: string;
491
+ } | {
492
+ type: "image";
493
+ source: {
494
+ type: "base64";
495
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
496
+ data: string;
497
+ } | {
498
+ type: "url";
499
+ url: string;
500
+ };
501
+ })[];
502
+ }>, "many">;
503
+ system: z.ZodOptional<z.ZodString>;
504
+ tools: z.ZodOptional<z.ZodArray<z.ZodObject<{
505
+ name: z.ZodString;
506
+ description: z.ZodOptional<z.ZodString>;
507
+ input_schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
508
+ }, "strip", z.ZodTypeAny, {
509
+ name: string;
510
+ input_schema: Record<string, unknown>;
511
+ description?: string | undefined;
512
+ }, {
513
+ name: string;
514
+ input_schema: Record<string, unknown>;
515
+ description?: string | undefined;
516
+ }>, "many">>;
517
+ tool_choice: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
518
+ type: z.ZodString;
519
+ }, "strip", z.ZodTypeAny, {
520
+ type: string;
521
+ }, {
522
+ type: string;
523
+ }>, z.ZodObject<{
524
+ type: z.ZodLiteral<"tool">;
525
+ name: z.ZodString;
526
+ }, "strip", z.ZodTypeAny, {
527
+ type: "tool";
528
+ name: string;
529
+ }, {
530
+ type: "tool";
531
+ name: string;
532
+ }>]>>;
533
+ }, "strip", z.ZodTypeAny, {
534
+ model: string;
535
+ messages: {
536
+ role: "user" | "assistant";
537
+ content: string | ({
538
+ type: "text";
539
+ text: string;
540
+ } | {
541
+ type: "image";
542
+ source: {
543
+ type: "base64";
544
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
545
+ data: string;
546
+ } | {
547
+ type: "url";
548
+ url: string;
549
+ };
550
+ })[];
551
+ }[];
552
+ system?: string | undefined;
553
+ tools?: {
554
+ name: string;
555
+ input_schema: Record<string, unknown>;
556
+ description?: string | undefined;
557
+ }[] | undefined;
558
+ tool_choice?: {
559
+ type: string;
560
+ } | {
561
+ type: "tool";
562
+ name: string;
563
+ } | undefined;
564
+ }, {
565
+ model: string;
566
+ messages: {
567
+ role: "user" | "assistant";
568
+ content: string | ({
569
+ type: "text";
570
+ text: string;
571
+ } | {
572
+ type: "image";
573
+ source: {
574
+ type: "base64";
575
+ media_type: "image/jpeg" | "image/png" | "image/gif" | "image/webp";
576
+ data: string;
577
+ } | {
578
+ type: "url";
579
+ url: string;
580
+ };
581
+ })[];
582
+ }[];
583
+ system?: string | undefined;
584
+ tools?: {
585
+ name: string;
586
+ input_schema: Record<string, unknown>;
587
+ description?: string | undefined;
588
+ }[] | undefined;
589
+ tool_choice?: {
590
+ type: string;
591
+ } | {
592
+ type: "tool";
593
+ name: string;
594
+ } | undefined;
595
+ }>;
596
+ export declare const KimiCodingOptionsSchema: z.ZodObject<{
597
+ apiKey: z.ZodString;
598
+ baseURL: z.ZodOptional<z.ZodString>;
599
+ maxRetries: z.ZodOptional<z.ZodNumber>;
600
+ timeout: z.ZodOptional<z.ZodNumber>;
601
+ fetch: z.ZodOptional<z.ZodType<(input: RequestInfo | URL, init?: RequestInit) => Promise<Response>, z.ZodTypeDef, (input: RequestInfo | URL, init?: RequestInit) => Promise<Response>>>;
602
+ }, "strip", z.ZodTypeAny, {
603
+ apiKey: string;
604
+ baseURL?: string | undefined;
605
+ maxRetries?: number | undefined;
606
+ timeout?: number | undefined;
607
+ fetch?: ((input: RequestInfo | URL, init?: RequestInit) => Promise<Response>) | undefined;
608
+ }, {
609
+ apiKey: string;
610
+ baseURL?: string | undefined;
611
+ maxRetries?: number | undefined;
612
+ timeout?: number | undefined;
613
+ fetch?: ((input: RequestInfo | URL, init?: RequestInit) => Promise<Response>) | undefined;
614
+ }>;
615
+ export type Base64ImageSource = z.infer<typeof Base64ImageSourceSchema>;
616
+ export type UrlImageSource = z.infer<typeof UrlImageSourceSchema>;
617
+ export type ImageSource = z.infer<typeof ImageSourceSchema>;
618
+ export type TextContentBlock = z.infer<typeof TextContentBlockSchema>;
619
+ export type ImageContentBlock = z.infer<typeof ImageContentBlockSchema>;
620
+ export type ContentBlock = z.infer<typeof ContentBlockSchema>;
621
+ export type MessageContent = string | ContentBlock[];
622
+ export type ChatMessage = z.infer<typeof ChatMessageSchema>;
623
+ export type Role = ChatMessage["role"];
624
+ export type ChatRequest = z.infer<typeof ChatRequestSchema>;
625
+ export type EmbeddingRequest = z.infer<typeof EmbeddingRequestSchema>;
626
+ export type CountTokensRequest = z.infer<typeof CountTokensRequestSchema>;
627
+ export type KimiCodingOptions = z.infer<typeof KimiCodingOptionsSchema>;
628
+ //# sourceMappingURL=zod.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zod.d.ts","sourceRoot":"","sources":["../../src/zod.ts"],"names":[],"mappings":"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"}