@mcpmesh/sdk 2.0.0-beta.3 → 2.0.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.
@@ -9,7 +9,7 @@
9
9
  * - Metadata tracking (tokens, latency, tool calls)
10
10
  *
11
11
  * Configuration Hierarchy (ENV > Config):
12
- * - MESH_LLM_MODEL: Override model (e.g., "gpt-4o", "gemini-2.0-flash")
12
+ * - MESH_LLM_MODEL: Override model (e.g., "gpt-4o", "gemini-2.5-flash")
13
13
  * - MESH_LLM_MAX_ITERATIONS: Override max agentic loop iterations
14
14
  *
15
15
  * @example
package/dist/llm-agent.js CHANGED
@@ -9,7 +9,7 @@
9
9
  * - Metadata tracking (tokens, latency, tool calls)
10
10
  *
11
11
  * Configuration Hierarchy (ENV > Config):
12
- * - MESH_LLM_MODEL: Override model (e.g., "gpt-4o", "gemini-2.0-flash")
12
+ * - MESH_LLM_MODEL: Override model (e.g., "gpt-4o", "gemini-2.5-flash")
13
13
  * - MESH_LLM_MAX_ITERATIONS: Override max agentic loop iterations
14
14
  *
15
15
  * @example
@@ -36,7 +36,7 @@ import { type ProviderHandler, type VendorCapabilities, type ToolSchema, type Ou
36
36
  * Supported Models (via Vercel AI SDK):
37
37
  * - gemini-3-flash-preview (reasoning support)
38
38
  * - gemini-3-pro-preview (advanced reasoning)
39
- * - gemini-2.0-flash (fast, efficient)
39
+ * - gemini-2.5-flash (fast, efficient)
40
40
  * - gemini-2.0-flash-lite (fastest, most efficient)
41
41
  * - gemini-1.5-pro (high capability)
42
42
  * - gemini-1.5-flash (balanced)
@@ -39,7 +39,7 @@ const debug = createDebug("gemini-handler");
39
39
  * Supported Models (via Vercel AI SDK):
40
40
  * - gemini-3-flash-preview (reasoning support)
41
41
  * - gemini-3-pro-preview (advanced reasoning)
42
- * - gemini-2.0-flash (fast, efficient)
42
+ * - gemini-2.5-flash (fast, efficient)
43
43
  * - gemini-2.0-flash-lite (fastest, most efficient)
44
44
  * - gemini-1.5-pro (high capability)
45
45
  * - gemini-1.5-flash (balanced)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcpmesh/sdk",
3
- "version": "2.0.0-beta.3",
3
+ "version": "2.0.1",
4
4
  "description": "TypeScript SDK for MCP Mesh — build distributed AI agents with auto-discovery, dependency injection, and LLM integration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -35,7 +35,7 @@
35
35
  "@ai-sdk/google": "^3.0.0",
36
36
  "@ai-sdk/google-vertex": "^3.0.0",
37
37
  "@ai-sdk/openai": "^3.0.0",
38
- "@mcpmesh/core": "2.0.0-beta.3",
38
+ "@mcpmesh/core": "2.0.1",
39
39
  "ai": "^6.0.0",
40
40
  "fastmcp": "^3.34.0",
41
41
  "handlebars": "^4.7.8",