@dexto/client-sdk 1.4.0 → 1.5.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.
package/dist/client.d.ts CHANGED
@@ -52,6 +52,301 @@ export declare function createDextoClient(config: ClientConfig): {
52
52
  status: 200;
53
53
  };
54
54
  }>;
55
+ } & {
56
+ api: {
57
+ models: {
58
+ local: import("hono/client").ClientRequest<{
59
+ $get: {
60
+ input: {};
61
+ output: {
62
+ models: {
63
+ id: string;
64
+ displayName: string;
65
+ filePath: string;
66
+ sizeBytes: number;
67
+ source?: "manual" | "huggingface" | undefined;
68
+ contextLength?: number | undefined;
69
+ }[];
70
+ };
71
+ outputFormat: "json";
72
+ status: 200;
73
+ };
74
+ }>;
75
+ };
76
+ };
77
+ } & {
78
+ api: {
79
+ models: {
80
+ ollama: import("hono/client").ClientRequest<{
81
+ $get: {
82
+ input: {
83
+ query: {
84
+ baseURL?: string | undefined;
85
+ };
86
+ };
87
+ output: {
88
+ models: {
89
+ name: string;
90
+ size?: number | undefined;
91
+ digest?: string | undefined;
92
+ modifiedAt?: string | undefined;
93
+ }[];
94
+ available: boolean;
95
+ error?: string | undefined;
96
+ version?: string | undefined;
97
+ };
98
+ outputFormat: "json";
99
+ status: 200;
100
+ };
101
+ }>;
102
+ };
103
+ };
104
+ } & {
105
+ api: {
106
+ models: {
107
+ local: {
108
+ validate: import("hono/client").ClientRequest<{
109
+ $post: {
110
+ input: {
111
+ json: {
112
+ filePath: string;
113
+ };
114
+ };
115
+ output: {
116
+ valid: boolean;
117
+ error?: string | undefined;
118
+ sizeBytes?: number | undefined;
119
+ };
120
+ outputFormat: "json";
121
+ status: 200;
122
+ };
123
+ }>;
124
+ };
125
+ };
126
+ };
127
+ } & {
128
+ api: {
129
+ models: {
130
+ local: {
131
+ ":modelId": import("hono/client").ClientRequest<{
132
+ $delete: {
133
+ input: {
134
+ param: {
135
+ modelId: string;
136
+ };
137
+ } & {
138
+ json: {
139
+ deleteFile?: boolean | undefined;
140
+ };
141
+ };
142
+ output: {
143
+ success: boolean;
144
+ modelId: string;
145
+ fileDeleted: boolean;
146
+ error?: string | undefined;
147
+ };
148
+ outputFormat: "json";
149
+ status: 200;
150
+ } | {
151
+ input: {
152
+ param: {
153
+ modelId: string;
154
+ };
155
+ } & {
156
+ json: {
157
+ deleteFile?: boolean | undefined;
158
+ };
159
+ };
160
+ output: {
161
+ success: boolean;
162
+ modelId: string;
163
+ fileDeleted: boolean;
164
+ error?: string | undefined;
165
+ };
166
+ outputFormat: "json";
167
+ status: 404;
168
+ };
169
+ }>;
170
+ };
171
+ };
172
+ };
173
+ } & {
174
+ api: {
175
+ discovery: import("hono/client").ClientRequest<{
176
+ $get: {
177
+ input: {};
178
+ output: {
179
+ internalTools: {
180
+ description: string;
181
+ name: string;
182
+ }[];
183
+ customTools: {
184
+ type: string;
185
+ category: "customTools" | "compaction" | "blob";
186
+ metadata?: {
187
+ [x: string]: import("hono/utils/types").JSONValue;
188
+ description?: string | undefined;
189
+ displayName?: string | undefined;
190
+ } | undefined;
191
+ }[];
192
+ compaction: {
193
+ type: string;
194
+ category: "customTools" | "compaction" | "blob";
195
+ metadata?: {
196
+ [x: string]: import("hono/utils/types").JSONValue;
197
+ description?: string | undefined;
198
+ displayName?: string | undefined;
199
+ } | undefined;
200
+ }[];
201
+ blob: {
202
+ type: string;
203
+ category: "customTools" | "compaction" | "blob";
204
+ metadata?: {
205
+ [x: string]: import("hono/utils/types").JSONValue;
206
+ description?: string | undefined;
207
+ displayName?: string | undefined;
208
+ } | undefined;
209
+ }[];
210
+ };
211
+ outputFormat: "json";
212
+ status: 200;
213
+ };
214
+ }>;
215
+ };
216
+ } & {
217
+ api: {
218
+ tools: import("hono/client").ClientRequest<{
219
+ $get: {
220
+ input: {};
221
+ output: {
222
+ tools: {
223
+ description: string;
224
+ id: string;
225
+ name: string;
226
+ source: "custom" | "mcp" | "internal";
227
+ serverName?: string | undefined;
228
+ inputSchema?: {
229
+ [x: string]: import("hono/utils/types").JSONValue;
230
+ type?: "object" | undefined;
231
+ properties?: {
232
+ [x: string]: {
233
+ [x: string]: import("hono/utils/types").JSONValue;
234
+ description?: string | undefined;
235
+ default?: any;
236
+ type?: "string" | "number" | "boolean" | "object" | "integer" | "array" | undefined;
237
+ enum?: (string | number | boolean)[] | undefined;
238
+ };
239
+ } | undefined;
240
+ required?: string[] | undefined;
241
+ } | undefined;
242
+ }[];
243
+ totalCount: number;
244
+ internalCount: number;
245
+ customCount: number;
246
+ mcpCount: number;
247
+ };
248
+ outputFormat: "json";
249
+ status: 200;
250
+ };
251
+ }>;
252
+ };
253
+ } & {
254
+ api: {
255
+ llm: {
256
+ key: {
257
+ ":provider": import("hono/client").ClientRequest<{
258
+ $get: {
259
+ input: {
260
+ param: {
261
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
262
+ };
263
+ };
264
+ output: {
265
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
266
+ hasKey: boolean;
267
+ envVar: string;
268
+ keyValue?: string | undefined;
269
+ };
270
+ outputFormat: "json";
271
+ status: 200;
272
+ };
273
+ }>;
274
+ };
275
+ };
276
+ };
277
+ } & {
278
+ api: {
279
+ llm: {
280
+ key: import("hono/client").ClientRequest<{
281
+ $post: {
282
+ input: {
283
+ json: {
284
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
285
+ apiKey: string;
286
+ };
287
+ };
288
+ output: {
289
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
290
+ ok: true;
291
+ envVar: string;
292
+ };
293
+ outputFormat: "json";
294
+ status: 200;
295
+ };
296
+ }>;
297
+ };
298
+ };
299
+ } & {
300
+ api: {
301
+ openrouter: {
302
+ validate: {
303
+ ":modelId": import("hono/client").ClientRequest<{
304
+ $get: {
305
+ input: {
306
+ param: {
307
+ modelId: string;
308
+ };
309
+ };
310
+ output: {
311
+ valid: boolean;
312
+ status: "valid" | "unknown" | "invalid";
313
+ modelId: string;
314
+ error?: string | undefined;
315
+ info?: {
316
+ contextLength: number;
317
+ } | undefined;
318
+ };
319
+ outputFormat: "json";
320
+ status: 200;
321
+ };
322
+ }>;
323
+ };
324
+ };
325
+ };
326
+ } & {
327
+ api: {
328
+ openrouter: {
329
+ "refresh-cache": import("hono/client").ClientRequest<{
330
+ $post: {
331
+ input: {};
332
+ output: {
333
+ message: string;
334
+ ok: true;
335
+ };
336
+ outputFormat: "json";
337
+ status: 200;
338
+ } | {
339
+ input: {};
340
+ output: {
341
+ message: string;
342
+ ok: false;
343
+ };
344
+ outputFormat: "json";
345
+ status: 500;
346
+ };
347
+ }>;
348
+ };
349
+ };
55
350
  } & {
56
351
  api: {
57
352
  queue: {
@@ -290,7 +585,6 @@ export declare function createDextoClient(config: ClientConfig): {
290
585
  id: string;
291
586
  sourcePath: string;
292
587
  name?: string | undefined;
293
- injectPreferences?: boolean | undefined;
294
588
  };
295
589
  };
296
590
  output: {
@@ -379,410 +673,7 @@ export declare function createDextoClient(config: ClientConfig): {
379
673
  input: {
380
674
  json: {
381
675
  description: string;
382
- config: {
383
- llm: {
384
- model: string;
385
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
386
- apiKey: string;
387
- maxIterations?: number | undefined;
388
- baseURL?: string | undefined;
389
- maxInputTokens?: number | undefined;
390
- maxOutputTokens?: number | undefined;
391
- temperature?: number | undefined;
392
- allowedMediaTypes?: string[] | undefined;
393
- };
394
- systemPrompt: string | {
395
- contributors?: ({
396
- type: "static";
397
- content: string;
398
- id: string;
399
- priority: number;
400
- enabled?: boolean | undefined;
401
- } | {
402
- type: "dynamic";
403
- id: string;
404
- source: "resources" | "dateTime";
405
- priority: number;
406
- enabled?: boolean | undefined;
407
- } | {
408
- type: "file";
409
- id: string;
410
- priority: number;
411
- files: string[];
412
- options?: {
413
- includeFilenames?: boolean | undefined;
414
- separator?: string | undefined;
415
- errorHandling?: "error" | "skip" | undefined;
416
- maxFileSize?: number | undefined;
417
- includeMetadata?: boolean | undefined;
418
- } | undefined;
419
- enabled?: boolean | undefined;
420
- })[] | undefined;
421
- };
422
- tools?: Record<string, {
423
- maxOutputChars?: number | undefined;
424
- maxLines?: number | undefined;
425
- maxLineLength?: number | undefined;
426
- }> | undefined;
427
- storage?: {
428
- database: {
429
- type: "in-memory";
430
- options?: Record<string, any> | undefined;
431
- maxConnections?: number | undefined;
432
- idleTimeoutMillis?: number | undefined;
433
- connectionTimeoutMillis?: number | undefined;
434
- } | {
435
- path: string;
436
- type: "sqlite";
437
- options?: Record<string, any> | undefined;
438
- maxConnections?: number | undefined;
439
- idleTimeoutMillis?: number | undefined;
440
- connectionTimeoutMillis?: number | undefined;
441
- } | {
442
- type: "postgres";
443
- password?: string | undefined;
444
- options?: Record<string, any> | undefined;
445
- url?: string | undefined;
446
- maxConnections?: number | undefined;
447
- idleTimeoutMillis?: number | undefined;
448
- connectionTimeoutMillis?: number | undefined;
449
- host?: string | undefined;
450
- port?: number | undefined;
451
- database?: string | undefined;
452
- connectionString?: string | undefined;
453
- };
454
- cache: {
455
- type: "in-memory";
456
- options?: Record<string, any> | undefined;
457
- maxConnections?: number | undefined;
458
- idleTimeoutMillis?: number | undefined;
459
- connectionTimeoutMillis?: number | undefined;
460
- } | {
461
- type: "redis";
462
- password?: string | undefined;
463
- options?: Record<string, any> | undefined;
464
- url?: string | undefined;
465
- maxConnections?: number | undefined;
466
- idleTimeoutMillis?: number | undefined;
467
- connectionTimeoutMillis?: number | undefined;
468
- host?: string | undefined;
469
- port?: number | undefined;
470
- database?: number | undefined;
471
- };
472
- blob: {
473
- type: "in-memory";
474
- maxBlobSize?: number | undefined;
475
- maxTotalSize?: number | undefined;
476
- } | {
477
- type: "local";
478
- storePath: string;
479
- maxBlobSize?: number | undefined;
480
- maxTotalSize?: number | undefined;
481
- cleanupAfterDays?: number | undefined;
482
- };
483
- } | undefined;
484
- telemetry?: {
485
- enabled?: boolean | undefined;
486
- serviceName?: string | undefined;
487
- tracerName?: string | undefined;
488
- export?: {
489
- type: "otlp";
490
- headers?: Record<string, string> | undefined;
491
- protocol?: "http" | "grpc" | undefined;
492
- endpoint?: string | undefined;
493
- } | {
494
- type: "console";
495
- } | undefined;
496
- } | undefined;
497
- logger?: {
498
- level?: "debug" | "info" | "warn" | "error" | "silly" | undefined;
499
- transports?: ({
500
- type: "console";
501
- colorize?: boolean | undefined;
502
- } | {
503
- path: string;
504
- type: "file";
505
- maxFiles?: number | undefined;
506
- maxSize?: number | undefined;
507
- } | {
508
- token: string;
509
- type: "upstash";
510
- url: string;
511
- listName?: string | undefined;
512
- maxListLength?: number | undefined;
513
- batchSize?: number | undefined;
514
- })[] | undefined;
515
- } | undefined;
516
- elicitation?: {
517
- timeout?: number | undefined;
518
- enabled?: boolean | undefined;
519
- } | undefined;
520
- prompts?: ({
521
- prompt: string;
522
- type: "inline";
523
- id: string;
524
- description?: string | undefined;
525
- title?: string | undefined;
526
- priority?: number | undefined;
527
- category?: string | undefined;
528
- showInStarters?: boolean | undefined;
529
- } | {
530
- file: string;
531
- type: "file";
532
- showInStarters?: boolean | undefined;
533
- })[] | undefined;
534
- agentId?: string | undefined;
535
- agentCard?: {
536
- description: string;
537
- name: string;
538
- url: string;
539
- version: string;
540
- provider?: {
541
- url: string;
542
- organization: string;
543
- } | undefined;
544
- metadata?: import("zod").objectInputType<{
545
- dexto: import("zod").ZodOptional<import("zod").ZodObject<{
546
- authentication: import("zod").ZodOptional<import("zod").ZodObject<{
547
- schemes: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
548
- credentials: import("zod").ZodOptional<import("zod").ZodString>;
549
- }, "strict", import("zod").ZodTypeAny, {
550
- schemes: string[];
551
- credentials?: string | undefined;
552
- }, {
553
- schemes?: string[] | undefined;
554
- credentials?: string | undefined;
555
- }>>;
556
- delegation: import("zod").ZodOptional<import("zod").ZodObject<{
557
- protocol: import("zod").ZodEnum<["dexto-v1", "http-simple", "a2a-jsonrpc", "mcp-http"]>;
558
- endpoint: import("zod").ZodString;
559
- supportsSession: import("zod").ZodBoolean;
560
- supportsStreaming: import("zod").ZodOptional<import("zod").ZodBoolean>;
561
- }, "strict", import("zod").ZodTypeAny, {
562
- protocol: "dexto-v1" | "http-simple" | "a2a-jsonrpc" | "mcp-http";
563
- endpoint: string;
564
- supportsSession: boolean;
565
- supportsStreaming?: boolean | undefined;
566
- }, {
567
- protocol: "dexto-v1" | "http-simple" | "a2a-jsonrpc" | "mcp-http";
568
- endpoint: string;
569
- supportsSession: boolean;
570
- supportsStreaming?: boolean | undefined;
571
- }>>;
572
- owner: import("zod").ZodOptional<import("zod").ZodObject<{
573
- userId: import("zod").ZodString;
574
- username: import("zod").ZodString;
575
- email: import("zod").ZodOptional<import("zod").ZodString>;
576
- }, "strict", import("zod").ZodTypeAny, {
577
- userId: string;
578
- username: string;
579
- email?: string | undefined;
580
- }, {
581
- userId: string;
582
- username: string;
583
- email?: string | undefined;
584
- }>>;
585
- }, "strict", import("zod").ZodTypeAny, {
586
- authentication?: {
587
- schemes: string[];
588
- credentials?: string | undefined;
589
- } | undefined;
590
- delegation?: {
591
- protocol: "dexto-v1" | "http-simple" | "a2a-jsonrpc" | "mcp-http";
592
- endpoint: string;
593
- supportsSession: boolean;
594
- supportsStreaming?: boolean | undefined;
595
- } | undefined;
596
- owner?: {
597
- userId: string;
598
- username: string;
599
- email?: string | undefined;
600
- } | undefined;
601
- }, {
602
- authentication?: {
603
- schemes?: string[] | undefined;
604
- credentials?: string | undefined;
605
- } | undefined;
606
- delegation?: {
607
- protocol: "dexto-v1" | "http-simple" | "a2a-jsonrpc" | "mcp-http";
608
- endpoint: string;
609
- supportsSession: boolean;
610
- supportsStreaming?: boolean | undefined;
611
- } | undefined;
612
- owner?: {
613
- userId: string;
614
- username: string;
615
- email?: string | undefined;
616
- } | undefined;
617
- }>>;
618
- }, import("zod").ZodTypeAny, "passthrough"> | undefined;
619
- capabilities?: {
620
- streaming?: boolean | undefined;
621
- pushNotifications?: boolean | undefined;
622
- stateTransitionHistory?: boolean | undefined;
623
- } | undefined;
624
- protocolVersion?: string | undefined;
625
- preferredTransport?: "JSONRPC" | "GRPC" | "HTTP+JSON" | undefined;
626
- defaultInputModes?: string[] | undefined;
627
- defaultOutputModes?: string[] | undefined;
628
- skills?: {
629
- description: string;
630
- name: string;
631
- id: string;
632
- tags: string[];
633
- examples?: string[] | undefined;
634
- inputModes?: string[] | undefined;
635
- outputModes?: string[] | undefined;
636
- }[] | undefined;
637
- iconUrl?: string | undefined;
638
- documentationUrl?: string | undefined;
639
- additionalInterfaces?: {
640
- url: string;
641
- transport: "JSONRPC" | "GRPC" | "HTTP+JSON";
642
- }[] | undefined;
643
- securitySchemes?: Record<string, {
644
- type: "apiKey";
645
- name: string;
646
- in: "query" | "header" | "cookie";
647
- description?: string | undefined;
648
- } | {
649
- type: "http";
650
- scheme: string;
651
- description?: string | undefined;
652
- bearerFormat?: string | undefined;
653
- } | {
654
- type: "oauth2";
655
- flows: {
656
- password?: {
657
- scopes: Record<string, string>;
658
- authorizationUrl?: string | undefined;
659
- tokenUrl?: string | undefined;
660
- refreshUrl?: string | undefined;
661
- } | undefined;
662
- implicit?: {
663
- scopes: Record<string, string>;
664
- authorizationUrl?: string | undefined;
665
- tokenUrl?: string | undefined;
666
- refreshUrl?: string | undefined;
667
- } | undefined;
668
- clientCredentials?: {
669
- scopes: Record<string, string>;
670
- authorizationUrl?: string | undefined;
671
- tokenUrl?: string | undefined;
672
- refreshUrl?: string | undefined;
673
- } | undefined;
674
- authorizationCode?: {
675
- scopes: Record<string, string>;
676
- authorizationUrl?: string | undefined;
677
- tokenUrl?: string | undefined;
678
- refreshUrl?: string | undefined;
679
- } | undefined;
680
- };
681
- description?: string | undefined;
682
- } | {
683
- type: "openIdConnect";
684
- openIdConnectUrl: string;
685
- description?: string | undefined;
686
- } | {
687
- type: "mutualTLS";
688
- description?: string | undefined;
689
- }> | undefined;
690
- security?: Record<string, string[]>[] | undefined;
691
- supportsAuthenticatedExtendedCard?: boolean | undefined;
692
- signatures?: {
693
- protected: string;
694
- signature: string;
695
- }[] | undefined;
696
- } | undefined;
697
- greeting?: string | undefined;
698
- memories?: {
699
- enabled?: boolean | undefined;
700
- limit?: number | undefined;
701
- priority?: number | undefined;
702
- includeTimestamps?: boolean | undefined;
703
- includeTags?: boolean | undefined;
704
- pinnedOnly?: boolean | undefined;
705
- } | undefined;
706
- mcpServers?: Record<string, {
707
- type: "stdio";
708
- command: string;
709
- timeout?: number | undefined;
710
- enabled?: boolean | undefined;
711
- args?: string[] | undefined;
712
- env?: Record<string, string> | undefined;
713
- connectionMode?: "strict" | "lenient" | undefined;
714
- } | {
715
- type: "sse";
716
- url: string;
717
- timeout?: number | undefined;
718
- enabled?: boolean | undefined;
719
- connectionMode?: "strict" | "lenient" | undefined;
720
- headers?: Record<string, string> | undefined;
721
- } | {
722
- type: "http";
723
- url: string;
724
- timeout?: number | undefined;
725
- enabled?: boolean | undefined;
726
- connectionMode?: "strict" | "lenient" | undefined;
727
- headers?: Record<string, string> | undefined;
728
- }> | undefined;
729
- internalTools?: ("search_history" | "ask_user" | "read_file" | "glob_files" | "grep_content" | "write_file" | "edit_file" | "bash_exec" | "bash_output" | "kill_process" | "delegate_to_url")[] | undefined;
730
- sessions?: {
731
- maxSessions?: number | undefined;
732
- sessionTTL?: number | undefined;
733
- } | undefined;
734
- toolConfirmation?: {
735
- timeout?: number | undefined;
736
- mode?: "manual" | "auto-approve" | "auto-deny" | undefined;
737
- allowedToolsStorage?: "storage" | "memory" | undefined;
738
- toolPolicies?: {
739
- alwaysAllow?: string[] | undefined;
740
- alwaysDeny?: string[] | undefined;
741
- } | undefined;
742
- } | undefined;
743
- internalResources?: ({
744
- type: "filesystem";
745
- paths: string[];
746
- maxFiles?: number | undefined;
747
- maxDepth?: number | undefined;
748
- includeHidden?: boolean | undefined;
749
- includeExtensions?: string[] | undefined;
750
- } | {
751
- type: "blob";
752
- })[] | {
753
- enabled?: boolean | undefined;
754
- resources?: ({
755
- type: "filesystem";
756
- paths: string[];
757
- maxFiles?: number | undefined;
758
- maxDepth?: number | undefined;
759
- includeHidden?: boolean | undefined;
760
- includeExtensions?: string[] | undefined;
761
- } | {
762
- type: "blob";
763
- })[] | undefined;
764
- } | undefined;
765
- plugins?: {
766
- custom?: {
767
- name: string;
768
- priority: number;
769
- module: string;
770
- blocking: boolean;
771
- config?: Record<string, any> | undefined;
772
- enabled?: boolean | undefined;
773
- }[] | undefined;
774
- contentPolicy?: import("zod").objectInputType<{
775
- priority: import("zod").ZodNumber;
776
- blocking: import("zod").ZodOptional<import("zod").ZodBoolean>;
777
- enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
778
- }, import("zod").ZodTypeAny, "passthrough"> | undefined;
779
- responseSanitizer?: import("zod").objectInputType<{
780
- priority: import("zod").ZodNumber;
781
- blocking: import("zod").ZodOptional<import("zod").ZodBoolean>;
782
- enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
783
- }, import("zod").ZodTypeAny, "passthrough"> | undefined;
784
- } | undefined;
785
- };
676
+ config: Record<string, any>;
786
677
  id: string;
787
678
  name: string;
788
679
  tags?: string[] | undefined;
@@ -1896,7 +1787,7 @@ export declare function createDextoClient(config: ClientConfig): {
1896
1787
  totalTokens?: number | undefined;
1897
1788
  } | undefined;
1898
1789
  model?: string | undefined;
1899
- provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | undefined;
1790
+ provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
1900
1791
  toolCalls?: {
1901
1792
  function: {
1902
1793
  name: string;
@@ -1982,7 +1873,7 @@ export declare function createDextoClient(config: ClientConfig): {
1982
1873
  totalTokens?: number | undefined;
1983
1874
  } | undefined;
1984
1875
  model?: string | undefined;
1985
- provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | undefined;
1876
+ provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
1986
1877
  toolCalls?: {
1987
1878
  function: {
1988
1879
  name: string;
@@ -2158,7 +2049,7 @@ export declare function createDextoClient(config: ClientConfig): {
2158
2049
  totalTokens?: number | undefined;
2159
2050
  } | undefined;
2160
2051
  model?: string | undefined;
2161
- provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | undefined;
2052
+ provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
2162
2053
  toolCalls?: {
2163
2054
  function: {
2164
2055
  name: string;
@@ -2290,7 +2181,7 @@ export declare function createDextoClient(config: ClientConfig): {
2290
2181
  output: {
2291
2182
  config: {
2292
2183
  model: string;
2293
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
2184
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
2294
2185
  maxIterations?: number | undefined;
2295
2186
  baseURL?: string | undefined;
2296
2187
  maxInputTokens?: number | undefined;
@@ -2477,6 +2368,160 @@ export declare function createDextoClient(config: ClientConfig): {
2477
2368
  } | undefined;
2478
2369
  }[];
2479
2370
  } | undefined;
2371
+ openrouter?: {
2372
+ name: string;
2373
+ hasApiKey: boolean;
2374
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2375
+ primaryEnvVar: string;
2376
+ supportsBaseURL: boolean;
2377
+ models: {
2378
+ name: string;
2379
+ maxInputTokens: number;
2380
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2381
+ default?: boolean | undefined;
2382
+ displayName?: string | undefined;
2383
+ pricing?: {
2384
+ inputPerM: number;
2385
+ outputPerM: number;
2386
+ cacheReadPerM?: number | undefined;
2387
+ cacheWritePerM?: number | undefined;
2388
+ currency?: "USD" | undefined;
2389
+ unit?: "per_million_tokens" | undefined;
2390
+ } | undefined;
2391
+ }[];
2392
+ } | undefined;
2393
+ litellm?: {
2394
+ name: string;
2395
+ hasApiKey: boolean;
2396
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2397
+ primaryEnvVar: string;
2398
+ supportsBaseURL: boolean;
2399
+ models: {
2400
+ name: string;
2401
+ maxInputTokens: number;
2402
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2403
+ default?: boolean | undefined;
2404
+ displayName?: string | undefined;
2405
+ pricing?: {
2406
+ inputPerM: number;
2407
+ outputPerM: number;
2408
+ cacheReadPerM?: number | undefined;
2409
+ cacheWritePerM?: number | undefined;
2410
+ currency?: "USD" | undefined;
2411
+ unit?: "per_million_tokens" | undefined;
2412
+ } | undefined;
2413
+ }[];
2414
+ } | undefined;
2415
+ glama?: {
2416
+ name: string;
2417
+ hasApiKey: boolean;
2418
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2419
+ primaryEnvVar: string;
2420
+ supportsBaseURL: boolean;
2421
+ models: {
2422
+ name: string;
2423
+ maxInputTokens: number;
2424
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2425
+ default?: boolean | undefined;
2426
+ displayName?: string | undefined;
2427
+ pricing?: {
2428
+ inputPerM: number;
2429
+ outputPerM: number;
2430
+ cacheReadPerM?: number | undefined;
2431
+ cacheWritePerM?: number | undefined;
2432
+ currency?: "USD" | undefined;
2433
+ unit?: "per_million_tokens" | undefined;
2434
+ } | undefined;
2435
+ }[];
2436
+ } | undefined;
2437
+ vertex?: {
2438
+ name: string;
2439
+ hasApiKey: boolean;
2440
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2441
+ primaryEnvVar: string;
2442
+ supportsBaseURL: boolean;
2443
+ models: {
2444
+ name: string;
2445
+ maxInputTokens: number;
2446
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2447
+ default?: boolean | undefined;
2448
+ displayName?: string | undefined;
2449
+ pricing?: {
2450
+ inputPerM: number;
2451
+ outputPerM: number;
2452
+ cacheReadPerM?: number | undefined;
2453
+ cacheWritePerM?: number | undefined;
2454
+ currency?: "USD" | undefined;
2455
+ unit?: "per_million_tokens" | undefined;
2456
+ } | undefined;
2457
+ }[];
2458
+ } | undefined;
2459
+ bedrock?: {
2460
+ name: string;
2461
+ hasApiKey: boolean;
2462
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2463
+ primaryEnvVar: string;
2464
+ supportsBaseURL: boolean;
2465
+ models: {
2466
+ name: string;
2467
+ maxInputTokens: number;
2468
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2469
+ default?: boolean | undefined;
2470
+ displayName?: string | undefined;
2471
+ pricing?: {
2472
+ inputPerM: number;
2473
+ outputPerM: number;
2474
+ cacheReadPerM?: number | undefined;
2475
+ cacheWritePerM?: number | undefined;
2476
+ currency?: "USD" | undefined;
2477
+ unit?: "per_million_tokens" | undefined;
2478
+ } | undefined;
2479
+ }[];
2480
+ } | undefined;
2481
+ local?: {
2482
+ name: string;
2483
+ hasApiKey: boolean;
2484
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2485
+ primaryEnvVar: string;
2486
+ supportsBaseURL: boolean;
2487
+ models: {
2488
+ name: string;
2489
+ maxInputTokens: number;
2490
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2491
+ default?: boolean | undefined;
2492
+ displayName?: string | undefined;
2493
+ pricing?: {
2494
+ inputPerM: number;
2495
+ outputPerM: number;
2496
+ cacheReadPerM?: number | undefined;
2497
+ cacheWritePerM?: number | undefined;
2498
+ currency?: "USD" | undefined;
2499
+ unit?: "per_million_tokens" | undefined;
2500
+ } | undefined;
2501
+ }[];
2502
+ } | undefined;
2503
+ ollama?: {
2504
+ name: string;
2505
+ hasApiKey: boolean;
2506
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2507
+ primaryEnvVar: string;
2508
+ supportsBaseURL: boolean;
2509
+ models: {
2510
+ name: string;
2511
+ maxInputTokens: number;
2512
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2513
+ default?: boolean | undefined;
2514
+ displayName?: string | undefined;
2515
+ pricing?: {
2516
+ inputPerM: number;
2517
+ outputPerM: number;
2518
+ cacheReadPerM?: number | undefined;
2519
+ cacheWritePerM?: number | undefined;
2520
+ currency?: "USD" | undefined;
2521
+ unit?: "per_million_tokens" | undefined;
2522
+ } | undefined;
2523
+ }[];
2524
+ } | undefined;
2480
2525
  };
2481
2526
  } | {
2482
2527
  models: {
@@ -2502,28 +2547,6 @@ export declare function createDextoClient(config: ClientConfig): {
2502
2547
  }>;
2503
2548
  };
2504
2549
  };
2505
- } & {
2506
- api: {
2507
- llm: {
2508
- key: import("hono/client").ClientRequest<{
2509
- $post: {
2510
- input: {
2511
- json: {
2512
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
2513
- apiKey: string;
2514
- };
2515
- };
2516
- output: {
2517
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
2518
- ok: true;
2519
- envVar: string;
2520
- };
2521
- outputFormat: "json";
2522
- status: 200;
2523
- };
2524
- }>;
2525
- };
2526
- };
2527
2550
  } & {
2528
2551
  api: {
2529
2552
  llm: {
@@ -2532,7 +2555,7 @@ export declare function createDextoClient(config: ClientConfig): {
2532
2555
  input: {
2533
2556
  json: {
2534
2557
  model?: string | undefined;
2535
- provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | undefined;
2558
+ provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
2536
2559
  apiKey?: string | undefined;
2537
2560
  maxIterations?: number | undefined;
2538
2561
  baseURL?: string | undefined;
@@ -2547,7 +2570,7 @@ export declare function createDextoClient(config: ClientConfig): {
2547
2570
  output: {
2548
2571
  config: {
2549
2572
  model: string;
2550
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
2573
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
2551
2574
  maxIterations: number;
2552
2575
  baseURL?: string | undefined;
2553
2576
  maxInputTokens?: number | undefined;
@@ -2573,7 +2596,10 @@ export declare function createDextoClient(config: ClientConfig): {
2573
2596
  output: {
2574
2597
  models: {
2575
2598
  name: string;
2576
- baseURL: string;
2599
+ provider: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
2600
+ apiKey?: string | undefined | undefined;
2601
+ baseURL?: string | undefined | undefined;
2602
+ filePath?: string | undefined | undefined;
2577
2603
  displayName?: string | undefined | undefined;
2578
2604
  maxInputTokens?: number | undefined | undefined;
2579
2605
  maxOutputTokens?: number | undefined | undefined;
@@ -2586,7 +2612,10 @@ export declare function createDextoClient(config: ClientConfig): {
2586
2612
  input: {
2587
2613
  json: {
2588
2614
  name: string;
2589
- baseURL: string;
2615
+ provider?: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
2616
+ apiKey?: string | undefined;
2617
+ baseURL?: string | undefined;
2618
+ filePath?: string | undefined;
2590
2619
  displayName?: string | undefined;
2591
2620
  maxInputTokens?: number | undefined;
2592
2621
  maxOutputTokens?: number | undefined;
@@ -2595,7 +2624,10 @@ export declare function createDextoClient(config: ClientConfig): {
2595
2624
  output: {
2596
2625
  model: {
2597
2626
  name: string;
2598
- baseURL: string;
2627
+ provider: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
2628
+ apiKey?: string | undefined | undefined;
2629
+ baseURL?: string | undefined | undefined;
2630
+ filePath?: string | undefined | undefined;
2599
2631
  displayName?: string | undefined | undefined;
2600
2632
  maxInputTokens?: number | undefined | undefined;
2601
2633
  maxOutputTokens?: number | undefined | undefined;
@@ -2664,12 +2696,9 @@ export declare function createDextoClient(config: ClientConfig): {
2664
2696
  sessionId: string;
2665
2697
  };
2666
2698
  };
2667
- output: {
2668
- sessionId: string;
2669
- accepted: true;
2670
- };
2671
- outputFormat: "json";
2672
- status: 202;
2699
+ output: {};
2700
+ outputFormat: string;
2701
+ status: 400;
2673
2702
  } | {
2674
2703
  input: {
2675
2704
  json: {
@@ -2689,9 +2718,12 @@ export declare function createDextoClient(config: ClientConfig): {
2689
2718
  sessionId: string;
2690
2719
  };
2691
2720
  };
2692
- output: {};
2693
- outputFormat: string;
2694
- status: 400;
2721
+ output: {
2722
+ sessionId: string;
2723
+ accepted: true;
2724
+ };
2725
+ outputFormat: "json";
2726
+ status: 202;
2695
2727
  };
2696
2728
  }>;
2697
2729
  };
@@ -2750,7 +2782,7 @@ export declare function createDextoClient(config: ClientConfig): {
2750
2782
  totalTokens?: number | undefined;
2751
2783
  } | undefined;
2752
2784
  model?: string | undefined;
2753
- provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | undefined;
2785
+ provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
2754
2786
  };
2755
2787
  outputFormat: "json";
2756
2788
  status: 200;
@@ -2901,8 +2933,8 @@ export declare function createDextoClient(config: ClientConfig): {
2901
2933
  })[];
2902
2934
  messageId: string;
2903
2935
  metadata?: Record<string, any> | undefined;
2904
- contextId?: string | undefined;
2905
2936
  taskId?: string | undefined;
2937
+ contextId?: string | undefined;
2906
2938
  extensions?: string[] | undefined;
2907
2939
  referenceTaskIds?: string[] | undefined;
2908
2940
  };
@@ -2957,8 +2989,8 @@ export declare function createDextoClient(config: ClientConfig): {
2957
2989
  metadata?: {
2958
2990
  [x: string]: any;
2959
2991
  } | undefined;
2960
- contextId?: string | undefined;
2961
2992
  taskId?: string | undefined;
2993
+ contextId?: string | undefined;
2962
2994
  extensions?: string[] | undefined;
2963
2995
  referenceTaskIds?: string[] | undefined;
2964
2996
  } | undefined;
@@ -3006,8 +3038,8 @@ export declare function createDextoClient(config: ClientConfig): {
3006
3038
  metadata?: {
3007
3039
  [x: string]: any;
3008
3040
  } | undefined;
3009
- contextId?: string | undefined;
3010
3041
  taskId?: string | undefined;
3042
+ contextId?: string | undefined;
3011
3043
  extensions?: string[] | undefined;
3012
3044
  referenceTaskIds?: string[] | undefined;
3013
3045
  }[] | undefined;
@@ -3073,8 +3105,8 @@ export declare function createDextoClient(config: ClientConfig): {
3073
3105
  metadata?: {
3074
3106
  [x: string]: any;
3075
3107
  } | undefined;
3076
- contextId?: string | undefined;
3077
3108
  taskId?: string | undefined;
3109
+ contextId?: string | undefined;
3078
3110
  extensions?: string[] | undefined;
3079
3111
  referenceTaskIds?: string[] | undefined;
3080
3112
  } | undefined;
@@ -3122,8 +3154,8 @@ export declare function createDextoClient(config: ClientConfig): {
3122
3154
  metadata?: {
3123
3155
  [x: string]: any;
3124
3156
  } | undefined;
3125
- contextId?: string | undefined;
3126
3157
  taskId?: string | undefined;
3158
+ contextId?: string | undefined;
3127
3159
  extensions?: string[] | undefined;
3128
3160
  referenceTaskIds?: string[] | undefined;
3129
3161
  }[] | undefined;
@@ -3196,8 +3228,8 @@ export declare function createDextoClient(config: ClientConfig): {
3196
3228
  metadata?: {
3197
3229
  [x: string]: any;
3198
3230
  } | undefined;
3199
- contextId?: string | undefined;
3200
3231
  taskId?: string | undefined;
3232
+ contextId?: string | undefined;
3201
3233
  extensions?: string[] | undefined;
3202
3234
  referenceTaskIds?: string[] | undefined;
3203
3235
  } | undefined;
@@ -3245,8 +3277,8 @@ export declare function createDextoClient(config: ClientConfig): {
3245
3277
  metadata?: {
3246
3278
  [x: string]: any;
3247
3279
  } | undefined;
3248
- contextId?: string | undefined;
3249
3280
  taskId?: string | undefined;
3281
+ contextId?: string | undefined;
3250
3282
  extensions?: string[] | undefined;
3251
3283
  referenceTaskIds?: string[] | undefined;
3252
3284
  }[] | undefined;
@@ -3316,8 +3348,8 @@ export declare function createDextoClient(config: ClientConfig): {
3316
3348
  metadata?: {
3317
3349
  [x: string]: any;
3318
3350
  } | undefined;
3319
- contextId?: string | undefined;
3320
3351
  taskId?: string | undefined;
3352
+ contextId?: string | undefined;
3321
3353
  extensions?: string[] | undefined;
3322
3354
  referenceTaskIds?: string[] | undefined;
3323
3355
  } | undefined;
@@ -3365,8 +3397,8 @@ export declare function createDextoClient(config: ClientConfig): {
3365
3397
  metadata?: {
3366
3398
  [x: string]: any;
3367
3399
  } | undefined;
3368
- contextId?: string | undefined;
3369
3400
  taskId?: string | undefined;
3401
+ contextId?: string | undefined;
3370
3402
  extensions?: string[] | undefined;
3371
3403
  referenceTaskIds?: string[] | undefined;
3372
3404
  }[] | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dexto/client-sdk",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -22,8 +22,8 @@
22
22
  "tsup": "^8.0.2",
23
23
  "typescript": "^5.4.2",
24
24
  "vitest": "^1.3.1",
25
- "@dexto/core": "1.4.0",
26
- "@dexto/server": "1.4.0"
25
+ "@dexto/core": "1.5.0",
26
+ "@dexto/server": "1.5.0"
27
27
  },
28
28
  "files": [
29
29
  "dist",