@dexto/server 1.5.1 → 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
CHANGED
|
@@ -2327,7 +2327,7 @@ export declare function createDextoApp(options: CreateDextoAppOptions): OpenAPIH
|
|
|
2327
2327
|
config: {
|
|
2328
2328
|
model: string;
|
|
2329
2329
|
provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
2330
|
-
maxIterations
|
|
2330
|
+
maxIterations?: number | undefined;
|
|
2331
2331
|
baseURL?: string | undefined;
|
|
2332
2332
|
maxInputTokens?: number | undefined;
|
|
2333
2333
|
maxOutputTokens?: number | undefined;
|
|
@@ -397,7 +397,7 @@ export declare function createLlmRouter(getAgent: GetAgentFn): OpenAPIHono<impor
|
|
|
397
397
|
config: {
|
|
398
398
|
model: string;
|
|
399
399
|
provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
400
|
-
maxIterations
|
|
400
|
+
maxIterations?: number | undefined;
|
|
401
401
|
baseURL?: string | undefined;
|
|
402
402
|
maxInputTokens?: number | undefined;
|
|
403
403
|
maxOutputTokens?: number | undefined;
|
|
@@ -524,7 +524,7 @@ 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>;
|
|
@@ -536,7 +536,7 @@ export declare const LLMConfigResponseSchema: z.ZodObject<Omit<{
|
|
|
536
536
|
}, "strict", z.ZodTypeAny, {
|
|
537
537
|
model: string;
|
|
538
538
|
provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
539
|
-
maxIterations
|
|
539
|
+
maxIterations?: number | undefined;
|
|
540
540
|
baseURL?: string | undefined;
|
|
541
541
|
maxInputTokens?: number | undefined;
|
|
542
542
|
maxOutputTokens?: number | undefined;
|
|
@@ -560,7 +560,7 @@ export declare const LLMConfigSchema: z.ZodObject<{
|
|
|
560
560
|
provider: z.ZodEnum<["openai", "openai-compatible", "anthropic", "google", "groq", "xai", "cohere", "openrouter", "litellm", "glama", "vertex", "bedrock", "local", "ollama"]>;
|
|
561
561
|
model: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
562
562
|
apiKey: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
563
|
-
maxIterations: z.
|
|
563
|
+
maxIterations: z.ZodOptional<z.ZodNumber>;
|
|
564
564
|
baseURL: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string | undefined, string>>;
|
|
565
565
|
maxInputTokens: z.ZodOptional<z.ZodNumber>;
|
|
566
566
|
maxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -570,8 +570,8 @@ export declare const LLMConfigSchema: z.ZodObject<{
|
|
|
570
570
|
}, "strict", z.ZodTypeAny, {
|
|
571
571
|
model: string;
|
|
572
572
|
provider: "openai" | "openai-compatible" | "anthropic" | "google" | "groq" | "xai" | "cohere" | "openrouter" | "litellm" | "glama" | "vertex" | "bedrock" | "local" | "ollama";
|
|
573
|
-
maxIterations: number;
|
|
574
573
|
apiKey?: string | undefined;
|
|
574
|
+
maxIterations?: number | undefined;
|
|
575
575
|
baseURL?: string | undefined;
|
|
576
576
|
maxInputTokens?: number | undefined;
|
|
577
577
|
maxOutputTokens?: number | undefined;
|
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",
|