@dexto/server 1.5.0 → 1.5.2
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/hono/index.d.ts +23 -8
- package/dist/hono/index.d.ts.map +1 -1
- package/dist/hono/routes/discovery.cjs +4 -3
- package/dist/hono/routes/discovery.d.ts +12 -3
- package/dist/hono/routes/discovery.d.ts.map +1 -1
- package/dist/hono/routes/discovery.js +4 -3
- package/dist/hono/routes/llm.d.ts +7 -1
- package/dist/hono/routes/llm.d.ts.map +1 -1
- package/dist/hono/routes/memory.d.ts +4 -4
- package/dist/hono/schemas/responses.d.ts +10 -4
- package/dist/hono/schemas/responses.d.ts.map +1 -1
- package/package.json +4 -4
package/dist/hono/index.d.ts
CHANGED
|
@@ -134,7 +134,7 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
134
134
|
}[];
|
|
135
135
|
customTools: {
|
|
136
136
|
type: string;
|
|
137
|
-
category: "customTools" | "compaction" | "blob";
|
|
137
|
+
category: "customTools" | "compaction" | "blob" | "database";
|
|
138
138
|
metadata?: {
|
|
139
139
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
140
140
|
description?: string | undefined;
|
|
@@ -143,7 +143,7 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
143
143
|
}[];
|
|
144
144
|
compaction: {
|
|
145
145
|
type: string;
|
|
146
|
-
category: "customTools" | "compaction" | "blob";
|
|
146
|
+
category: "customTools" | "compaction" | "blob" | "database";
|
|
147
147
|
metadata?: {
|
|
148
148
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
149
149
|
description?: string | undefined;
|
|
@@ -152,7 +152,16 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
152
152
|
}[];
|
|
153
153
|
blob: {
|
|
154
154
|
type: string;
|
|
155
|
-
category: "customTools" | "compaction" | "blob";
|
|
155
|
+
category: "customTools" | "compaction" | "blob" | "database";
|
|
156
|
+
metadata?: {
|
|
157
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
158
|
+
description?: string | undefined;
|
|
159
|
+
displayName?: string | undefined;
|
|
160
|
+
} | undefined;
|
|
161
|
+
}[];
|
|
162
|
+
database: {
|
|
163
|
+
type: string;
|
|
164
|
+
category: "customTools" | "compaction" | "blob" | "database";
|
|
156
165
|
metadata?: {
|
|
157
166
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
158
167
|
description?: string | undefined;
|
|
@@ -805,8 +814,8 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
805
814
|
ok: true;
|
|
806
815
|
memory: {
|
|
807
816
|
content: string;
|
|
808
|
-
id: string;
|
|
809
817
|
createdAt: number;
|
|
818
|
+
id: string;
|
|
810
819
|
updatedAt: number;
|
|
811
820
|
metadata?: {
|
|
812
821
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
@@ -835,8 +844,8 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
835
844
|
output: {
|
|
836
845
|
memories: {
|
|
837
846
|
content: string;
|
|
838
|
-
id: string;
|
|
839
847
|
createdAt: number;
|
|
848
|
+
id: string;
|
|
840
849
|
updatedAt: number;
|
|
841
850
|
metadata?: {
|
|
842
851
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
@@ -863,8 +872,8 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
863
872
|
ok: true;
|
|
864
873
|
memory: {
|
|
865
874
|
content: string;
|
|
866
|
-
id: string;
|
|
867
875
|
createdAt: number;
|
|
876
|
+
id: string;
|
|
868
877
|
updatedAt: number;
|
|
869
878
|
metadata?: {
|
|
870
879
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
@@ -899,8 +908,8 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
899
908
|
ok: true;
|
|
900
909
|
memory: {
|
|
901
910
|
content: string;
|
|
902
|
-
id: string;
|
|
903
911
|
createdAt: number;
|
|
912
|
+
id: string;
|
|
904
913
|
updatedAt: number;
|
|
905
914
|
metadata?: {
|
|
906
915
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
@@ -1941,6 +1950,7 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
1941
1950
|
maxOutputTokens?: number | undefined;
|
|
1942
1951
|
temperature?: number | undefined;
|
|
1943
1952
|
allowedMediaTypes?: string[] | undefined;
|
|
1953
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
1944
1954
|
hasApiKey?: boolean | undefined;
|
|
1945
1955
|
displayName?: string | undefined;
|
|
1946
1956
|
};
|
|
@@ -2308,6 +2318,7 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
2308
2318
|
maxOutputTokens?: number | undefined;
|
|
2309
2319
|
temperature?: number | undefined;
|
|
2310
2320
|
allowedMediaTypes?: string[] | undefined;
|
|
2321
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
2311
2322
|
} & {
|
|
2312
2323
|
sessionId?: string | undefined;
|
|
2313
2324
|
};
|
|
@@ -2316,12 +2327,13 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
2316
2327
|
config: {
|
|
2317
2328
|
model: string;
|
|
2318
2329
|
provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
2319
|
-
maxIterations
|
|
2330
|
+
maxIterations?: number | undefined;
|
|
2320
2331
|
baseURL?: string | undefined;
|
|
2321
2332
|
maxInputTokens?: number | undefined;
|
|
2322
2333
|
maxOutputTokens?: number | undefined;
|
|
2323
2334
|
temperature?: number | undefined;
|
|
2324
2335
|
allowedMediaTypes?: string[] | undefined;
|
|
2336
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
2325
2337
|
hasApiKey?: boolean | undefined;
|
|
2326
2338
|
};
|
|
2327
2339
|
sessionId?: string | undefined;
|
|
@@ -2340,6 +2352,7 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
2340
2352
|
provider: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
2341
2353
|
apiKey?: string | undefined | undefined;
|
|
2342
2354
|
baseURL?: string | undefined | undefined;
|
|
2355
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined | undefined;
|
|
2343
2356
|
filePath?: string | undefined | undefined;
|
|
2344
2357
|
displayName?: string | undefined | undefined;
|
|
2345
2358
|
maxInputTokens?: number | undefined | undefined;
|
|
@@ -2359,6 +2372,7 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
2359
2372
|
provider?: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
|
|
2360
2373
|
apiKey?: string | undefined;
|
|
2361
2374
|
baseURL?: string | undefined;
|
|
2375
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
2362
2376
|
filePath?: string | undefined;
|
|
2363
2377
|
displayName?: string | undefined;
|
|
2364
2378
|
maxInputTokens?: number | undefined;
|
|
@@ -2371,6 +2385,7 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
2371
2385
|
provider: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
2372
2386
|
apiKey?: string | undefined | undefined;
|
|
2373
2387
|
baseURL?: string | undefined | undefined;
|
|
2388
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined | undefined;
|
|
2374
2389
|
filePath?: string | undefined | undefined;
|
|
2375
2390
|
displayName?: string | undefined | undefined;
|
|
2376
2391
|
maxInputTokens?: number | undefined | undefined;
|
package/dist/hono/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hono/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAgBzD,OAAO,EAAsB,KAAK,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AAQlF,OAAO,EAGH,KAAK,kBAAkB,EAC1B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACzE,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AAKxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AA+B1E,MAAM,MAAM,UAAU,GAAG,CAAC,GAAG,EAAE,OAAO,KAAK,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AAE5E,MAAM,MAAM,qBAAqB,GAAG;IAChC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,UAAU,CAAC;IACrB,YAAY,EAAE,MAAM,SAAS,CAAC;IAC9B,mBAAmB,EAAE,mBAAmB,CAAC;IACzC,iBAAiB,EAAE,sBAAsB,CAAC;IAC1C,aAAa,EAAE,qBAAqB,CAAC;IACrC,aAAa,CAAC,EAAE,mBAAmB,CAAC;IACpC,qFAAqF;IACrF,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,mEAAmE;IACnE,WAAW,CAAC,EAAE,kBAAkB,CAAC;IACjC,+EAA+E;IAC/E,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB,CAAC;AAKF,wBAAgB,cAAc,CAAC,OAAO,EAAE,qBAAqB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hono/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAgBzD,OAAO,EAAsB,KAAK,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AAQlF,OAAO,EAGH,KAAK,kBAAkB,EAC1B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACzE,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AAKxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AA+B1E,MAAM,MAAM,UAAU,GAAG,CAAC,GAAG,EAAE,OAAO,KAAK,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AAE5E,MAAM,MAAM,qBAAqB,GAAG;IAChC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,UAAU,CAAC;IACrB,YAAY,EAAE,MAAM,SAAS,CAAC;IAC9B,mBAAmB,EAAE,mBAAmB,CAAC;IACzC,iBAAiB,EAAE,sBAAsB,CAAC;IAC1C,aAAa,EAAE,qBAAqB,CAAC;IACrC,aAAa,CAAC,EAAE,mBAAmB,CAAC;IACpC,qFAAqF;IACrF,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,mEAAmE;IACnE,WAAW,CAAC,EAAE,kBAAkB,CAAC;IACjC,+EAA+E;IAC/E,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB,CAAC;AAKF,wBAAgB,cAAc,CAAC,OAAO,EAAE,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAuM5D;AAID,MAAM,MAAM,OAAO,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAGxD,YAAY,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC"}
|
|
@@ -24,8 +24,8 @@ module.exports = __toCommonJS(discovery_exports);
|
|
|
24
24
|
var import_zod_openapi = require("@hono/zod-openapi");
|
|
25
25
|
var import_core = require("@dexto/core");
|
|
26
26
|
const DiscoveredProviderSchema = import_zod_openapi.z.object({
|
|
27
|
-
type: import_zod_openapi.z.string().describe(
|
|
28
|
-
category: import_zod_openapi.z.enum(["blob", "compaction", "customTools"]).describe("Provider category"),
|
|
27
|
+
type: import_zod_openapi.z.string().describe("Provider type identifier"),
|
|
28
|
+
category: import_zod_openapi.z.enum(["blob", "database", "compaction", "customTools"]).describe("Provider category"),
|
|
29
29
|
metadata: import_zod_openapi.z.object({
|
|
30
30
|
displayName: import_zod_openapi.z.string().optional().describe("Human-readable display name"),
|
|
31
31
|
description: import_zod_openapi.z.string().optional().describe("Provider description")
|
|
@@ -37,6 +37,7 @@ const InternalToolSchema = import_zod_openapi.z.object({
|
|
|
37
37
|
}).describe("Information about an internal tool");
|
|
38
38
|
const DiscoveryResponseSchema = import_zod_openapi.z.object({
|
|
39
39
|
blob: import_zod_openapi.z.array(DiscoveredProviderSchema).describe("Blob storage providers"),
|
|
40
|
+
database: import_zod_openapi.z.array(DiscoveredProviderSchema).describe("Database providers"),
|
|
40
41
|
compaction: import_zod_openapi.z.array(DiscoveredProviderSchema).describe("Compaction strategy providers"),
|
|
41
42
|
customTools: import_zod_openapi.z.array(DiscoveredProviderSchema).describe("Custom tool providers"),
|
|
42
43
|
internalTools: import_zod_openapi.z.array(InternalToolSchema).describe("Internal tools available for configuration")
|
|
@@ -47,7 +48,7 @@ function createDiscoveryRouter() {
|
|
|
47
48
|
method: "get",
|
|
48
49
|
path: "/discovery",
|
|
49
50
|
summary: "Discover Available Providers and Tools",
|
|
50
|
-
description: "Returns all registered providers (blob storage, compaction, custom tools) and available internal tools. Useful for building UIs that need to display configurable options.",
|
|
51
|
+
description: "Returns all registered providers (blob storage, database, compaction, custom tools) and available internal tools. Useful for building UIs that need to display configurable options.",
|
|
51
52
|
tags: ["discovery"],
|
|
52
53
|
responses: {
|
|
53
54
|
200: {
|
|
@@ -10,7 +10,7 @@ export declare function createDiscoveryRouter(): OpenAPIHono<import("hono").Env,
|
|
|
10
10
|
}[];
|
|
11
11
|
customTools: {
|
|
12
12
|
type: string;
|
|
13
|
-
category: "customTools" | "compaction" | "blob";
|
|
13
|
+
category: "customTools" | "compaction" | "blob" | "database";
|
|
14
14
|
metadata?: {
|
|
15
15
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
16
16
|
description?: string | undefined;
|
|
@@ -19,7 +19,7 @@ export declare function createDiscoveryRouter(): OpenAPIHono<import("hono").Env,
|
|
|
19
19
|
}[];
|
|
20
20
|
compaction: {
|
|
21
21
|
type: string;
|
|
22
|
-
category: "customTools" | "compaction" | "blob";
|
|
22
|
+
category: "customTools" | "compaction" | "blob" | "database";
|
|
23
23
|
metadata?: {
|
|
24
24
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
25
25
|
description?: string | undefined;
|
|
@@ -28,7 +28,16 @@ export declare function createDiscoveryRouter(): OpenAPIHono<import("hono").Env,
|
|
|
28
28
|
}[];
|
|
29
29
|
blob: {
|
|
30
30
|
type: string;
|
|
31
|
-
category: "customTools" | "compaction" | "blob";
|
|
31
|
+
category: "customTools" | "compaction" | "blob" | "database";
|
|
32
|
+
metadata?: {
|
|
33
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
34
|
+
description?: string | undefined;
|
|
35
|
+
displayName?: string | undefined;
|
|
36
|
+
} | undefined;
|
|
37
|
+
}[];
|
|
38
|
+
database: {
|
|
39
|
+
type: string;
|
|
40
|
+
category: "customTools" | "compaction" | "blob" | "database";
|
|
32
41
|
metadata?: {
|
|
33
42
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
34
43
|
description?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"discovery.d.ts","sourceRoot":"","sources":["../../../src/hono/routes/discovery.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAkB,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"discovery.d.ts","sourceRoot":"","sources":["../../../src/hono/routes/discovery.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAkB,MAAM,mBAAmB,CAAC;AAyChE,wBAAgB,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAsBpC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OpenAPIHono, createRoute, z } from "@hono/zod-openapi";
|
|
2
2
|
import { listAllProviders } from "@dexto/core";
|
|
3
3
|
const DiscoveredProviderSchema = z.object({
|
|
4
|
-
type: z.string().describe(
|
|
5
|
-
category: z.enum(["blob", "compaction", "customTools"]).describe("Provider category"),
|
|
4
|
+
type: z.string().describe("Provider type identifier"),
|
|
5
|
+
category: z.enum(["blob", "database", "compaction", "customTools"]).describe("Provider category"),
|
|
6
6
|
metadata: z.object({
|
|
7
7
|
displayName: z.string().optional().describe("Human-readable display name"),
|
|
8
8
|
description: z.string().optional().describe("Provider description")
|
|
@@ -14,6 +14,7 @@ const InternalToolSchema = z.object({
|
|
|
14
14
|
}).describe("Information about an internal tool");
|
|
15
15
|
const DiscoveryResponseSchema = z.object({
|
|
16
16
|
blob: z.array(DiscoveredProviderSchema).describe("Blob storage providers"),
|
|
17
|
+
database: z.array(DiscoveredProviderSchema).describe("Database providers"),
|
|
17
18
|
compaction: z.array(DiscoveredProviderSchema).describe("Compaction strategy providers"),
|
|
18
19
|
customTools: z.array(DiscoveredProviderSchema).describe("Custom tool providers"),
|
|
19
20
|
internalTools: z.array(InternalToolSchema).describe("Internal tools available for configuration")
|
|
@@ -24,7 +25,7 @@ function createDiscoveryRouter() {
|
|
|
24
25
|
method: "get",
|
|
25
26
|
path: "/discovery",
|
|
26
27
|
summary: "Discover Available Providers and Tools",
|
|
27
|
-
description: "Returns all registered providers (blob storage, compaction, custom tools) and available internal tools. Useful for building UIs that need to display configurable options.",
|
|
28
|
+
description: "Returns all registered providers (blob storage, database, compaction, custom tools) and available internal tools. Useful for building UIs that need to display configurable options.",
|
|
28
29
|
tags: ["discovery"],
|
|
29
30
|
responses: {
|
|
30
31
|
200: {
|
|
@@ -20,6 +20,7 @@ export declare function createLlmRouter(getAgent: GetAgentFn): OpenAPIHono<impor
|
|
|
20
20
|
maxOutputTokens?: number | undefined;
|
|
21
21
|
temperature?: number | undefined;
|
|
22
22
|
allowedMediaTypes?: string[] | undefined;
|
|
23
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
23
24
|
hasApiKey?: boolean | undefined;
|
|
24
25
|
displayName?: string | undefined;
|
|
25
26
|
};
|
|
@@ -387,6 +388,7 @@ export declare function createLlmRouter(getAgent: GetAgentFn): OpenAPIHono<impor
|
|
|
387
388
|
maxOutputTokens?: number | undefined;
|
|
388
389
|
temperature?: number | undefined;
|
|
389
390
|
allowedMediaTypes?: string[] | undefined;
|
|
391
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
390
392
|
} & {
|
|
391
393
|
sessionId?: string | undefined;
|
|
392
394
|
};
|
|
@@ -395,12 +397,13 @@ export declare function createLlmRouter(getAgent: GetAgentFn): OpenAPIHono<impor
|
|
|
395
397
|
config: {
|
|
396
398
|
model: string;
|
|
397
399
|
provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
398
|
-
maxIterations
|
|
400
|
+
maxIterations?: number | undefined;
|
|
399
401
|
baseURL?: string | undefined;
|
|
400
402
|
maxInputTokens?: number | undefined;
|
|
401
403
|
maxOutputTokens?: number | undefined;
|
|
402
404
|
temperature?: number | undefined;
|
|
403
405
|
allowedMediaTypes?: string[] | undefined;
|
|
406
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
404
407
|
hasApiKey?: boolean | undefined;
|
|
405
408
|
};
|
|
406
409
|
sessionId?: string | undefined;
|
|
@@ -419,6 +422,7 @@ export declare function createLlmRouter(getAgent: GetAgentFn): OpenAPIHono<impor
|
|
|
419
422
|
provider: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
420
423
|
apiKey?: string | undefined | undefined;
|
|
421
424
|
baseURL?: string | undefined | undefined;
|
|
425
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined | undefined;
|
|
422
426
|
filePath?: string | undefined | undefined;
|
|
423
427
|
displayName?: string | undefined | undefined;
|
|
424
428
|
maxInputTokens?: number | undefined | undefined;
|
|
@@ -438,6 +442,7 @@ export declare function createLlmRouter(getAgent: GetAgentFn): OpenAPIHono<impor
|
|
|
438
442
|
provider?: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama" | undefined;
|
|
439
443
|
apiKey?: string | undefined;
|
|
440
444
|
baseURL?: string | undefined;
|
|
445
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
441
446
|
filePath?: string | undefined;
|
|
442
447
|
displayName?: string | undefined;
|
|
443
448
|
maxInputTokens?: number | undefined;
|
|
@@ -450,6 +455,7 @@ export declare function createLlmRouter(getAgent: GetAgentFn): OpenAPIHono<impor
|
|
|
450
455
|
provider: "openai-compatible" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
451
456
|
apiKey?: string | undefined | undefined;
|
|
452
457
|
baseURL?: string | undefined | undefined;
|
|
458
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined | undefined;
|
|
453
459
|
filePath?: string | undefined | undefined;
|
|
454
460
|
displayName?: string | undefined | undefined;
|
|
455
461
|
maxInputTokens?: number | undefined | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llm.d.ts","sourceRoot":"","sources":["../../../src/hono/routes/llm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAkB,MAAM,mBAAmB,CAAC;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAkB9C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAOpC,KAAK,UAAU,GAAG,CAAC,GAAG,EAAE,OAAO,KAAK,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AAgErE,wBAAgB,eAAe,CAAC,QAAQ,EAAE,UAAU
|
|
1
|
+
{"version":3,"file":"llm.d.ts","sourceRoot":"","sources":["../../../src/hono/routes/llm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAkB,MAAM,mBAAmB,CAAC;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAkB9C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAOpC,KAAK,UAAU,GAAG,CAAC,GAAG,EAAE,OAAO,KAAK,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AAgErE,wBAAgB,eAAe,CAAC,QAAQ,EAAE,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoXnD"}
|
|
@@ -19,8 +19,8 @@ export declare function createMemoryRouter(getAgent: GetAgentFn): OpenAPIHono<im
|
|
|
19
19
|
ok: true;
|
|
20
20
|
memory: {
|
|
21
21
|
content: string;
|
|
22
|
-
id: string;
|
|
23
22
|
createdAt: number;
|
|
23
|
+
id: string;
|
|
24
24
|
updatedAt: number;
|
|
25
25
|
metadata?: {
|
|
26
26
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
@@ -49,8 +49,8 @@ export declare function createMemoryRouter(getAgent: GetAgentFn): OpenAPIHono<im
|
|
|
49
49
|
output: {
|
|
50
50
|
memories: {
|
|
51
51
|
content: string;
|
|
52
|
-
id: string;
|
|
53
52
|
createdAt: number;
|
|
53
|
+
id: string;
|
|
54
54
|
updatedAt: number;
|
|
55
55
|
metadata?: {
|
|
56
56
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
@@ -77,8 +77,8 @@ export declare function createMemoryRouter(getAgent: GetAgentFn): OpenAPIHono<im
|
|
|
77
77
|
ok: true;
|
|
78
78
|
memory: {
|
|
79
79
|
content: string;
|
|
80
|
-
id: string;
|
|
81
80
|
createdAt: number;
|
|
81
|
+
id: string;
|
|
82
82
|
updatedAt: number;
|
|
83
83
|
metadata?: {
|
|
84
84
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
@@ -113,8 +113,8 @@ export declare function createMemoryRouter(getAgent: GetAgentFn): OpenAPIHono<im
|
|
|
113
113
|
ok: true;
|
|
114
114
|
memory: {
|
|
115
115
|
content: string;
|
|
116
|
-
id: string;
|
|
117
116
|
createdAt: number;
|
|
117
|
+
id: string;
|
|
118
118
|
updatedAt: number;
|
|
119
119
|
metadata?: {
|
|
120
120
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
@@ -524,23 +524,25 @@ export declare const LLMConfigResponseSchema: z.ZodObject<Omit<{
|
|
|
524
524
|
provider: z.ZodEnum<["openai", "openai-compatible", "anthropic", "google", "groq", "xai", "cohere", "openrouter", "litellm", "glama", "vertex", "bedrock", "local", "ollama"]>;
|
|
525
525
|
model: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
526
526
|
apiKey: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
527
|
-
maxIterations: z.
|
|
527
|
+
maxIterations: z.ZodOptional<z.ZodNumber>;
|
|
528
528
|
baseURL: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string | undefined, string>>;
|
|
529
529
|
maxInputTokens: z.ZodOptional<z.ZodNumber>;
|
|
530
530
|
maxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
531
531
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
532
532
|
allowedMediaTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
533
|
+
reasoningEffort: z.ZodOptional<z.ZodEnum<["none", "minimal", "low", "medium", "high", "xhigh"]>>;
|
|
533
534
|
}, "apiKey"> & {
|
|
534
535
|
hasApiKey: z.ZodOptional<z.ZodBoolean>;
|
|
535
536
|
}, "strict", z.ZodTypeAny, {
|
|
536
537
|
model: string;
|
|
537
538
|
provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
538
|
-
maxIterations
|
|
539
|
+
maxIterations?: number | undefined;
|
|
539
540
|
baseURL?: string | undefined;
|
|
540
541
|
maxInputTokens?: number | undefined;
|
|
541
542
|
maxOutputTokens?: number | undefined;
|
|
542
543
|
temperature?: number | undefined;
|
|
543
544
|
allowedMediaTypes?: string[] | undefined;
|
|
545
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
544
546
|
hasApiKey?: boolean | undefined;
|
|
545
547
|
}, {
|
|
546
548
|
model: string;
|
|
@@ -551,28 +553,31 @@ export declare const LLMConfigResponseSchema: z.ZodObject<Omit<{
|
|
|
551
553
|
maxOutputTokens?: number | undefined;
|
|
552
554
|
temperature?: number | undefined;
|
|
553
555
|
allowedMediaTypes?: string[] | undefined;
|
|
556
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
554
557
|
hasApiKey?: boolean | undefined;
|
|
555
558
|
}>;
|
|
556
559
|
export declare const LLMConfigSchema: z.ZodObject<{
|
|
557
560
|
provider: z.ZodEnum<["openai", "openai-compatible", "anthropic", "google", "groq", "xai", "cohere", "openrouter", "litellm", "glama", "vertex", "bedrock", "local", "ollama"]>;
|
|
558
561
|
model: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
559
562
|
apiKey: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
560
|
-
maxIterations: z.
|
|
563
|
+
maxIterations: z.ZodOptional<z.ZodNumber>;
|
|
561
564
|
baseURL: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string | undefined, string>>;
|
|
562
565
|
maxInputTokens: z.ZodOptional<z.ZodNumber>;
|
|
563
566
|
maxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
564
567
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
565
568
|
allowedMediaTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
569
|
+
reasoningEffort: z.ZodOptional<z.ZodEnum<["none", "minimal", "low", "medium", "high", "xhigh"]>>;
|
|
566
570
|
}, "strict", z.ZodTypeAny, {
|
|
567
571
|
model: string;
|
|
568
572
|
provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
569
|
-
maxIterations: number;
|
|
570
573
|
apiKey?: string | undefined;
|
|
574
|
+
maxIterations?: number | undefined;
|
|
571
575
|
baseURL?: string | undefined;
|
|
572
576
|
maxInputTokens?: number | undefined;
|
|
573
577
|
maxOutputTokens?: number | undefined;
|
|
574
578
|
temperature?: number | undefined;
|
|
575
579
|
allowedMediaTypes?: string[] | undefined;
|
|
580
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
576
581
|
}, {
|
|
577
582
|
model: string;
|
|
578
583
|
provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
@@ -583,6 +588,7 @@ export declare const LLMConfigSchema: z.ZodObject<{
|
|
|
583
588
|
maxOutputTokens?: number | undefined;
|
|
584
589
|
temperature?: number | undefined;
|
|
585
590
|
allowedMediaTypes?: string[] | undefined;
|
|
591
|
+
reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | undefined;
|
|
586
592
|
}>;
|
|
587
593
|
export type LLMConfigResponse = z.output<typeof LLMConfigResponseSchema>;
|
|
588
594
|
export { AgentCardSchema, type AgentCard } from '@dexto/core';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"responses.d.ts","sourceRoot":"","sources":["../../../src/hono/schemas/responses.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAqBxB,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAG3C,OAAO,EAAE,mBAAmB,EAAE,KAAK,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAM3E,eAAO,MAAM,cAAc;;;;;;;;;EAMO,CAAC;AAEnC,eAAO,MAAM,eAAe;;;;;;;;;;;;EAOO,CAAC;AAEpC,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;EAQO,CAAC;AAEnC,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0B0C,CAAC;AAE5E,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAO2C,CAAC;AAE1E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;EAeqB,CAAC;AAEjD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;EAaU,CAAC;AAExC,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0Bc,CAAC;AAGjD,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,cAAc,CAAC,CAAC;AACvD,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,eAAe,CAAC,CAAC;AACzD,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,cAAc,CAAC,CAAC;AACvD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC7D,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,cAAc,CAAC,CAAC;AACvD,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC3D,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAQrE,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"responses.d.ts","sourceRoot":"","sources":["../../../src/hono/schemas/responses.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dexto/server",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"ws": "^8.18.1",
|
|
32
32
|
"yaml": "^2.7.1",
|
|
33
33
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
34
|
-
"@dexto/agent-management": "1.5.
|
|
35
|
-
"@dexto/core": "1.5.
|
|
36
|
-
"@dexto/image-local": "1.5.
|
|
34
|
+
"@dexto/agent-management": "1.5.2",
|
|
35
|
+
"@dexto/core": "1.5.2",
|
|
36
|
+
"@dexto/image-local": "1.5.2"
|
|
37
37
|
},
|
|
38
38
|
"files": [
|
|
39
39
|
"dist",
|