@dexto/client-sdk 1.4.0 → 1.5.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/dist/client.d.ts CHANGED
@@ -52,6 +52,310 @@ 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" | "database";
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" | "database";
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" | "database";
204
+ metadata?: {
205
+ [x: string]: import("hono/utils/types").JSONValue;
206
+ description?: string | undefined;
207
+ displayName?: string | undefined;
208
+ } | undefined;
209
+ }[];
210
+ database: {
211
+ type: string;
212
+ category: "customTools" | "compaction" | "blob" | "database";
213
+ metadata?: {
214
+ [x: string]: import("hono/utils/types").JSONValue;
215
+ description?: string | undefined;
216
+ displayName?: string | undefined;
217
+ } | undefined;
218
+ }[];
219
+ };
220
+ outputFormat: "json";
221
+ status: 200;
222
+ };
223
+ }>;
224
+ };
225
+ } & {
226
+ api: {
227
+ tools: import("hono/client").ClientRequest<{
228
+ $get: {
229
+ input: {};
230
+ output: {
231
+ tools: {
232
+ description: string;
233
+ id: string;
234
+ name: string;
235
+ source: "custom" | "mcp" | "internal";
236
+ serverName?: string | undefined;
237
+ inputSchema?: {
238
+ [x: string]: import("hono/utils/types").JSONValue;
239
+ type?: "object" | undefined;
240
+ properties?: {
241
+ [x: string]: {
242
+ [x: string]: import("hono/utils/types").JSONValue;
243
+ description?: string | undefined;
244
+ default?: any;
245
+ type?: "string" | "number" | "boolean" | "object" | "integer" | "array" | undefined;
246
+ enum?: (string | number | boolean)[] | undefined;
247
+ };
248
+ } | undefined;
249
+ required?: string[] | undefined;
250
+ } | undefined;
251
+ }[];
252
+ totalCount: number;
253
+ internalCount: number;
254
+ customCount: number;
255
+ mcpCount: number;
256
+ };
257
+ outputFormat: "json";
258
+ status: 200;
259
+ };
260
+ }>;
261
+ };
262
+ } & {
263
+ api: {
264
+ llm: {
265
+ key: {
266
+ ":provider": import("hono/client").ClientRequest<{
267
+ $get: {
268
+ input: {
269
+ param: {
270
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
271
+ };
272
+ };
273
+ output: {
274
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
275
+ hasKey: boolean;
276
+ envVar: string;
277
+ keyValue?: string | undefined;
278
+ };
279
+ outputFormat: "json";
280
+ status: 200;
281
+ };
282
+ }>;
283
+ };
284
+ };
285
+ };
286
+ } & {
287
+ api: {
288
+ llm: {
289
+ key: import("hono/client").ClientRequest<{
290
+ $post: {
291
+ input: {
292
+ json: {
293
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
294
+ apiKey: string;
295
+ };
296
+ };
297
+ output: {
298
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
299
+ ok: true;
300
+ envVar: string;
301
+ };
302
+ outputFormat: "json";
303
+ status: 200;
304
+ };
305
+ }>;
306
+ };
307
+ };
308
+ } & {
309
+ api: {
310
+ openrouter: {
311
+ validate: {
312
+ ":modelId": import("hono/client").ClientRequest<{
313
+ $get: {
314
+ input: {
315
+ param: {
316
+ modelId: string;
317
+ };
318
+ };
319
+ output: {
320
+ valid: boolean;
321
+ status: "valid" | "unknown" | "invalid";
322
+ modelId: string;
323
+ error?: string | undefined;
324
+ info?: {
325
+ contextLength: number;
326
+ } | undefined;
327
+ };
328
+ outputFormat: "json";
329
+ status: 200;
330
+ };
331
+ }>;
332
+ };
333
+ };
334
+ };
335
+ } & {
336
+ api: {
337
+ openrouter: {
338
+ "refresh-cache": import("hono/client").ClientRequest<{
339
+ $post: {
340
+ input: {};
341
+ output: {
342
+ message: string;
343
+ ok: true;
344
+ };
345
+ outputFormat: "json";
346
+ status: 200;
347
+ } | {
348
+ input: {};
349
+ output: {
350
+ message: string;
351
+ ok: false;
352
+ };
353
+ outputFormat: "json";
354
+ status: 500;
355
+ };
356
+ }>;
357
+ };
358
+ };
55
359
  } & {
56
360
  api: {
57
361
  queue: {
@@ -290,7 +594,6 @@ export declare function createDextoClient(config: ClientConfig): {
290
594
  id: string;
291
595
  sourcePath: string;
292
596
  name?: string | undefined;
293
- injectPreferences?: boolean | undefined;
294
597
  };
295
598
  };
296
599
  output: {
@@ -379,410 +682,7 @@ export declare function createDextoClient(config: ClientConfig): {
379
682
  input: {
380
683
  json: {
381
684
  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
- };
685
+ config: Record<string, any>;
786
686
  id: string;
787
687
  name: string;
788
688
  tags?: string[] | undefined;
@@ -1039,8 +939,8 @@ export declare function createDextoClient(config: ClientConfig): {
1039
939
  ok: true;
1040
940
  memory: {
1041
941
  content: string;
1042
- id: string;
1043
942
  createdAt: number;
943
+ id: string;
1044
944
  updatedAt: number;
1045
945
  metadata?: {
1046
946
  [x: string]: import("hono/utils/types").JSONValue;
@@ -1066,8 +966,8 @@ export declare function createDextoClient(config: ClientConfig): {
1066
966
  output: {
1067
967
  memories: {
1068
968
  content: string;
1069
- id: string;
1070
969
  createdAt: number;
970
+ id: string;
1071
971
  updatedAt: number;
1072
972
  metadata?: {
1073
973
  [x: string]: import("hono/utils/types").JSONValue;
@@ -1097,8 +997,8 @@ export declare function createDextoClient(config: ClientConfig): {
1097
997
  ok: true;
1098
998
  memory: {
1099
999
  content: string;
1100
- id: string;
1101
1000
  createdAt: number;
1001
+ id: string;
1102
1002
  updatedAt: number;
1103
1003
  metadata?: {
1104
1004
  [x: string]: import("hono/utils/types").JSONValue;
@@ -1130,8 +1030,8 @@ export declare function createDextoClient(config: ClientConfig): {
1130
1030
  ok: true;
1131
1031
  memory: {
1132
1032
  content: string;
1133
- id: string;
1134
1033
  createdAt: number;
1034
+ id: string;
1135
1035
  updatedAt: number;
1136
1036
  metadata?: {
1137
1037
  [x: string]: import("hono/utils/types").JSONValue;
@@ -1896,7 +1796,7 @@ export declare function createDextoClient(config: ClientConfig): {
1896
1796
  totalTokens?: number | undefined;
1897
1797
  } | undefined;
1898
1798
  model?: string | undefined;
1899
- provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | undefined;
1799
+ provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
1900
1800
  toolCalls?: {
1901
1801
  function: {
1902
1802
  name: string;
@@ -1982,7 +1882,7 @@ export declare function createDextoClient(config: ClientConfig): {
1982
1882
  totalTokens?: number | undefined;
1983
1883
  } | undefined;
1984
1884
  model?: string | undefined;
1985
- provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | undefined;
1885
+ provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
1986
1886
  toolCalls?: {
1987
1887
  function: {
1988
1888
  name: string;
@@ -2158,7 +2058,7 @@ export declare function createDextoClient(config: ClientConfig): {
2158
2058
  totalTokens?: number | undefined;
2159
2059
  } | undefined;
2160
2060
  model?: string | undefined;
2161
- provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | undefined;
2061
+ provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
2162
2062
  toolCalls?: {
2163
2063
  function: {
2164
2064
  name: string;
@@ -2290,13 +2190,14 @@ export declare function createDextoClient(config: ClientConfig): {
2290
2190
  output: {
2291
2191
  config: {
2292
2192
  model: string;
2293
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
2193
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
2294
2194
  maxIterations?: number | undefined;
2295
2195
  baseURL?: string | undefined;
2296
2196
  maxInputTokens?: number | undefined;
2297
2197
  maxOutputTokens?: number | undefined;
2298
2198
  temperature?: number | undefined;
2299
2199
  allowedMediaTypes?: string[] | undefined;
2200
+ reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
2300
2201
  hasApiKey?: boolean | undefined;
2301
2202
  displayName?: string | undefined;
2302
2203
  };
@@ -2477,6 +2378,160 @@ export declare function createDextoClient(config: ClientConfig): {
2477
2378
  } | undefined;
2478
2379
  }[];
2479
2380
  } | undefined;
2381
+ openrouter?: {
2382
+ name: string;
2383
+ hasApiKey: boolean;
2384
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2385
+ primaryEnvVar: string;
2386
+ supportsBaseURL: boolean;
2387
+ models: {
2388
+ name: string;
2389
+ maxInputTokens: number;
2390
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2391
+ default?: boolean | undefined;
2392
+ displayName?: string | undefined;
2393
+ pricing?: {
2394
+ inputPerM: number;
2395
+ outputPerM: number;
2396
+ cacheReadPerM?: number | undefined;
2397
+ cacheWritePerM?: number | undefined;
2398
+ currency?: "USD" | undefined;
2399
+ unit?: "per_million_tokens" | undefined;
2400
+ } | undefined;
2401
+ }[];
2402
+ } | undefined;
2403
+ litellm?: {
2404
+ name: string;
2405
+ hasApiKey: boolean;
2406
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2407
+ primaryEnvVar: string;
2408
+ supportsBaseURL: boolean;
2409
+ models: {
2410
+ name: string;
2411
+ maxInputTokens: number;
2412
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2413
+ default?: boolean | undefined;
2414
+ displayName?: string | undefined;
2415
+ pricing?: {
2416
+ inputPerM: number;
2417
+ outputPerM: number;
2418
+ cacheReadPerM?: number | undefined;
2419
+ cacheWritePerM?: number | undefined;
2420
+ currency?: "USD" | undefined;
2421
+ unit?: "per_million_tokens" | undefined;
2422
+ } | undefined;
2423
+ }[];
2424
+ } | undefined;
2425
+ glama?: {
2426
+ name: string;
2427
+ hasApiKey: boolean;
2428
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2429
+ primaryEnvVar: string;
2430
+ supportsBaseURL: boolean;
2431
+ models: {
2432
+ name: string;
2433
+ maxInputTokens: number;
2434
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2435
+ default?: boolean | undefined;
2436
+ displayName?: string | undefined;
2437
+ pricing?: {
2438
+ inputPerM: number;
2439
+ outputPerM: number;
2440
+ cacheReadPerM?: number | undefined;
2441
+ cacheWritePerM?: number | undefined;
2442
+ currency?: "USD" | undefined;
2443
+ unit?: "per_million_tokens" | undefined;
2444
+ } | undefined;
2445
+ }[];
2446
+ } | undefined;
2447
+ vertex?: {
2448
+ name: string;
2449
+ hasApiKey: boolean;
2450
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2451
+ primaryEnvVar: string;
2452
+ supportsBaseURL: boolean;
2453
+ models: {
2454
+ name: string;
2455
+ maxInputTokens: number;
2456
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2457
+ default?: boolean | undefined;
2458
+ displayName?: string | undefined;
2459
+ pricing?: {
2460
+ inputPerM: number;
2461
+ outputPerM: number;
2462
+ cacheReadPerM?: number | undefined;
2463
+ cacheWritePerM?: number | undefined;
2464
+ currency?: "USD" | undefined;
2465
+ unit?: "per_million_tokens" | undefined;
2466
+ } | undefined;
2467
+ }[];
2468
+ } | undefined;
2469
+ bedrock?: {
2470
+ name: string;
2471
+ hasApiKey: boolean;
2472
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2473
+ primaryEnvVar: string;
2474
+ supportsBaseURL: boolean;
2475
+ models: {
2476
+ name: string;
2477
+ maxInputTokens: number;
2478
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2479
+ default?: boolean | undefined;
2480
+ displayName?: string | undefined;
2481
+ pricing?: {
2482
+ inputPerM: number;
2483
+ outputPerM: number;
2484
+ cacheReadPerM?: number | undefined;
2485
+ cacheWritePerM?: number | undefined;
2486
+ currency?: "USD" | undefined;
2487
+ unit?: "per_million_tokens" | undefined;
2488
+ } | undefined;
2489
+ }[];
2490
+ } | undefined;
2491
+ local?: {
2492
+ name: string;
2493
+ hasApiKey: boolean;
2494
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2495
+ primaryEnvVar: string;
2496
+ supportsBaseURL: boolean;
2497
+ models: {
2498
+ name: string;
2499
+ maxInputTokens: number;
2500
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2501
+ default?: boolean | undefined;
2502
+ displayName?: string | undefined;
2503
+ pricing?: {
2504
+ inputPerM: number;
2505
+ outputPerM: number;
2506
+ cacheReadPerM?: number | undefined;
2507
+ cacheWritePerM?: number | undefined;
2508
+ currency?: "USD" | undefined;
2509
+ unit?: "per_million_tokens" | undefined;
2510
+ } | undefined;
2511
+ }[];
2512
+ } | undefined;
2513
+ ollama?: {
2514
+ name: string;
2515
+ hasApiKey: boolean;
2516
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2517
+ primaryEnvVar: string;
2518
+ supportsBaseURL: boolean;
2519
+ models: {
2520
+ name: string;
2521
+ maxInputTokens: number;
2522
+ supportedFileTypes: ("image" | "audio" | "pdf")[];
2523
+ default?: boolean | undefined;
2524
+ displayName?: string | undefined;
2525
+ pricing?: {
2526
+ inputPerM: number;
2527
+ outputPerM: number;
2528
+ cacheReadPerM?: number | undefined;
2529
+ cacheWritePerM?: number | undefined;
2530
+ currency?: "USD" | undefined;
2531
+ unit?: "per_million_tokens" | undefined;
2532
+ } | undefined;
2533
+ }[];
2534
+ } | undefined;
2480
2535
  };
2481
2536
  } | {
2482
2537
  models: {
@@ -2502,28 +2557,6 @@ export declare function createDextoClient(config: ClientConfig): {
2502
2557
  }>;
2503
2558
  };
2504
2559
  };
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
2560
  } & {
2528
2561
  api: {
2529
2562
  llm: {
@@ -2532,7 +2565,7 @@ export declare function createDextoClient(config: ClientConfig): {
2532
2565
  input: {
2533
2566
  json: {
2534
2567
  model?: string | undefined;
2535
- provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | undefined;
2568
+ provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
2536
2569
  apiKey?: string | undefined;
2537
2570
  maxIterations?: number | undefined;
2538
2571
  baseURL?: string | undefined;
@@ -2540,6 +2573,7 @@ export declare function createDextoClient(config: ClientConfig): {
2540
2573
  maxOutputTokens?: number | undefined;
2541
2574
  temperature?: number | undefined;
2542
2575
  allowedMediaTypes?: string[] | undefined;
2576
+ reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
2543
2577
  } & {
2544
2578
  sessionId?: string | undefined;
2545
2579
  };
@@ -2547,13 +2581,14 @@ export declare function createDextoClient(config: ClientConfig): {
2547
2581
  output: {
2548
2582
  config: {
2549
2583
  model: string;
2550
- provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere";
2584
+ provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
2551
2585
  maxIterations: number;
2552
2586
  baseURL?: string | undefined;
2553
2587
  maxInputTokens?: number | undefined;
2554
2588
  maxOutputTokens?: number | undefined;
2555
2589
  temperature?: number | undefined;
2556
2590
  allowedMediaTypes?: string[] | undefined;
2591
+ reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
2557
2592
  hasApiKey?: boolean | undefined;
2558
2593
  };
2559
2594
  sessionId?: string | undefined;
@@ -2573,7 +2608,11 @@ export declare function createDextoClient(config: ClientConfig): {
2573
2608
  output: {
2574
2609
  models: {
2575
2610
  name: string;
2576
- baseURL: string;
2611
+ provider: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
2612
+ apiKey?: string | undefined | undefined;
2613
+ baseURL?: string | undefined | undefined;
2614
+ reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined | undefined;
2615
+ filePath?: string | undefined | undefined;
2577
2616
  displayName?: string | undefined | undefined;
2578
2617
  maxInputTokens?: number | undefined | undefined;
2579
2618
  maxOutputTokens?: number | undefined | undefined;
@@ -2586,7 +2625,11 @@ export declare function createDextoClient(config: ClientConfig): {
2586
2625
  input: {
2587
2626
  json: {
2588
2627
  name: string;
2589
- baseURL: string;
2628
+ provider?: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
2629
+ apiKey?: string | undefined;
2630
+ baseURL?: string | undefined;
2631
+ reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
2632
+ filePath?: string | undefined;
2590
2633
  displayName?: string | undefined;
2591
2634
  maxInputTokens?: number | undefined;
2592
2635
  maxOutputTokens?: number | undefined;
@@ -2595,7 +2638,11 @@ export declare function createDextoClient(config: ClientConfig): {
2595
2638
  output: {
2596
2639
  model: {
2597
2640
  name: string;
2598
- baseURL: string;
2641
+ provider: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
2642
+ apiKey?: string | undefined | undefined;
2643
+ baseURL?: string | undefined | undefined;
2644
+ reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined | undefined;
2645
+ filePath?: string | undefined | undefined;
2599
2646
  displayName?: string | undefined | undefined;
2600
2647
  maxInputTokens?: number | undefined | undefined;
2601
2648
  maxOutputTokens?: number | undefined | undefined;
@@ -2664,12 +2711,9 @@ export declare function createDextoClient(config: ClientConfig): {
2664
2711
  sessionId: string;
2665
2712
  };
2666
2713
  };
2667
- output: {
2668
- sessionId: string;
2669
- accepted: true;
2670
- };
2671
- outputFormat: "json";
2672
- status: 202;
2714
+ output: {};
2715
+ outputFormat: string;
2716
+ status: 400;
2673
2717
  } | {
2674
2718
  input: {
2675
2719
  json: {
@@ -2689,9 +2733,12 @@ export declare function createDextoClient(config: ClientConfig): {
2689
2733
  sessionId: string;
2690
2734
  };
2691
2735
  };
2692
- output: {};
2693
- outputFormat: string;
2694
- status: 400;
2736
+ output: {
2737
+ sessionId: string;
2738
+ accepted: true;
2739
+ };
2740
+ outputFormat: "json";
2741
+ status: 202;
2695
2742
  };
2696
2743
  }>;
2697
2744
  };
@@ -2750,7 +2797,7 @@ export declare function createDextoClient(config: ClientConfig): {
2750
2797
  totalTokens?: number | undefined;
2751
2798
  } | undefined;
2752
2799
  model?: string | undefined;
2753
- provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | undefined;
2800
+ provider?: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
2754
2801
  };
2755
2802
  outputFormat: "json";
2756
2803
  status: 200;
@@ -2901,8 +2948,8 @@ export declare function createDextoClient(config: ClientConfig): {
2901
2948
  })[];
2902
2949
  messageId: string;
2903
2950
  metadata?: Record<string, any> | undefined;
2904
- contextId?: string | undefined;
2905
2951
  taskId?: string | undefined;
2952
+ contextId?: string | undefined;
2906
2953
  extensions?: string[] | undefined;
2907
2954
  referenceTaskIds?: string[] | undefined;
2908
2955
  };
@@ -2957,8 +3004,8 @@ export declare function createDextoClient(config: ClientConfig): {
2957
3004
  metadata?: {
2958
3005
  [x: string]: any;
2959
3006
  } | undefined;
2960
- contextId?: string | undefined;
2961
3007
  taskId?: string | undefined;
3008
+ contextId?: string | undefined;
2962
3009
  extensions?: string[] | undefined;
2963
3010
  referenceTaskIds?: string[] | undefined;
2964
3011
  } | undefined;
@@ -3006,8 +3053,8 @@ export declare function createDextoClient(config: ClientConfig): {
3006
3053
  metadata?: {
3007
3054
  [x: string]: any;
3008
3055
  } | undefined;
3009
- contextId?: string | undefined;
3010
3056
  taskId?: string | undefined;
3057
+ contextId?: string | undefined;
3011
3058
  extensions?: string[] | undefined;
3012
3059
  referenceTaskIds?: string[] | undefined;
3013
3060
  }[] | undefined;
@@ -3073,8 +3120,8 @@ export declare function createDextoClient(config: ClientConfig): {
3073
3120
  metadata?: {
3074
3121
  [x: string]: any;
3075
3122
  } | undefined;
3076
- contextId?: string | undefined;
3077
3123
  taskId?: string | undefined;
3124
+ contextId?: string | undefined;
3078
3125
  extensions?: string[] | undefined;
3079
3126
  referenceTaskIds?: string[] | undefined;
3080
3127
  } | undefined;
@@ -3122,8 +3169,8 @@ export declare function createDextoClient(config: ClientConfig): {
3122
3169
  metadata?: {
3123
3170
  [x: string]: any;
3124
3171
  } | undefined;
3125
- contextId?: string | undefined;
3126
3172
  taskId?: string | undefined;
3173
+ contextId?: string | undefined;
3127
3174
  extensions?: string[] | undefined;
3128
3175
  referenceTaskIds?: string[] | undefined;
3129
3176
  }[] | undefined;
@@ -3196,8 +3243,8 @@ export declare function createDextoClient(config: ClientConfig): {
3196
3243
  metadata?: {
3197
3244
  [x: string]: any;
3198
3245
  } | undefined;
3199
- contextId?: string | undefined;
3200
3246
  taskId?: string | undefined;
3247
+ contextId?: string | undefined;
3201
3248
  extensions?: string[] | undefined;
3202
3249
  referenceTaskIds?: string[] | undefined;
3203
3250
  } | undefined;
@@ -3245,8 +3292,8 @@ export declare function createDextoClient(config: ClientConfig): {
3245
3292
  metadata?: {
3246
3293
  [x: string]: any;
3247
3294
  } | undefined;
3248
- contextId?: string | undefined;
3249
3295
  taskId?: string | undefined;
3296
+ contextId?: string | undefined;
3250
3297
  extensions?: string[] | undefined;
3251
3298
  referenceTaskIds?: string[] | undefined;
3252
3299
  }[] | undefined;
@@ -3316,8 +3363,8 @@ export declare function createDextoClient(config: ClientConfig): {
3316
3363
  metadata?: {
3317
3364
  [x: string]: any;
3318
3365
  } | undefined;
3319
- contextId?: string | undefined;
3320
3366
  taskId?: string | undefined;
3367
+ contextId?: string | undefined;
3321
3368
  extensions?: string[] | undefined;
3322
3369
  referenceTaskIds?: string[] | undefined;
3323
3370
  } | undefined;
@@ -3365,8 +3412,8 @@ export declare function createDextoClient(config: ClientConfig): {
3365
3412
  metadata?: {
3366
3413
  [x: string]: any;
3367
3414
  } | undefined;
3368
- contextId?: string | undefined;
3369
3415
  taskId?: string | undefined;
3416
+ contextId?: string | undefined;
3370
3417
  extensions?: string[] | undefined;
3371
3418
  referenceTaskIds?: string[] | undefined;
3372
3419
  }[] | 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.1",
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.1",
26
+ "@dexto/server": "1.5.1"
27
27
  },
28
28
  "files": [
29
29
  "dist",