agentic-flow 1.7.3 → 1.7.5
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/.claude/agents/test-neural.md +0 -5
- package/.claude/answer.md +1 -0
- package/.claude/settings.json +19 -20
- package/CHANGELOG.md +0 -117
- package/README.md +17 -81
- package/dist/agentdb/benchmarks/comprehensive-benchmark.js +664 -0
- package/dist/agentdb/benchmarks/frontier-benchmark.js +419 -0
- package/dist/agentdb/benchmarks/reflexion-benchmark.js +370 -0
- package/dist/agentdb/cli/agentdb-cli.js +717 -0
- package/dist/agentdb/controllers/CausalMemoryGraph.js +322 -0
- package/dist/agentdb/controllers/CausalRecall.js +281 -0
- package/dist/agentdb/controllers/EmbeddingService.js +118 -0
- package/dist/agentdb/controllers/ExplainableRecall.js +387 -0
- package/dist/agentdb/controllers/NightlyLearner.js +382 -0
- package/dist/agentdb/controllers/ReflexionMemory.js +239 -0
- package/dist/agentdb/controllers/SkillLibrary.js +276 -0
- package/dist/agentdb/controllers/frontier-index.js +9 -0
- package/dist/agentdb/controllers/index.js +8 -0
- package/dist/agentdb/index.js +32 -0
- package/dist/agentdb/optimizations/BatchOperations.js +198 -0
- package/dist/agentdb/optimizations/QueryOptimizer.js +225 -0
- package/dist/agentdb/optimizations/index.js +7 -0
- package/dist/agentdb/tests/frontier-features.test.js +665 -0
- package/dist/cli-proxy.js +2 -33
- package/dist/index.js +2 -0
- package/dist/mcp/standalone-stdio.js +200 -4
- package/dist/memory/SharedMemoryPool.js +211 -0
- package/dist/memory/index.js +6 -0
- package/dist/reasoningbank/AdvancedMemory.js +239 -0
- package/dist/reasoningbank/HybridBackend.js +305 -0
- package/dist/reasoningbank/index-new.js +87 -0
- package/dist/reasoningbank/index.js +25 -44
- package/dist/utils/agentdb-runtime-patch.js +170 -0
- package/dist/utils/cli.js +0 -22
- package/docs/AGENTDB_TESTING.md +411 -0
- package/docs/v1.7.1-QUICK-START.md +399 -0
- package/package.json +4 -4
- package/scripts/run-validation.sh +165 -0
- package/scripts/test-agentdb.sh +153 -0
- package/.claude/skills/agentdb-memory-patterns/SKILL.md +0 -166
- package/.claude/skills/agentdb-vector-search/SKILL.md +0 -126
- package/.claude/skills/agentic-flow/agentdb-memory-patterns/SKILL.md +0 -166
- package/.claude/skills/agentic-flow/agentdb-vector-search/SKILL.md +0 -126
- package/.claude/skills/agentic-flow/reasoningbank-intelligence/SKILL.md +0 -201
- package/.claude/skills/agentic-flow/swarm-orchestration/SKILL.md +0 -179
- package/.claude/skills/reasoningbank-intelligence/SKILL.md +0 -201
- package/.claude/skills/skill-builder/README.md +0 -308
- package/.claude/skills/skill-builder/SKILL.md +0 -910
- package/.claude/skills/skill-builder/docs/SPECIFICATION.md +0 -358
- package/.claude/skills/skill-builder/resources/schemas/skill-frontmatter.schema.json +0 -41
- package/.claude/skills/skill-builder/resources/templates/full-skill.template +0 -118
- package/.claude/skills/skill-builder/resources/templates/minimal-skill.template +0 -38
- package/.claude/skills/skill-builder/scripts/generate-skill.sh +0 -334
- package/.claude/skills/skill-builder/scripts/validate-skill.sh +0 -198
- package/.claude/skills/swarm-orchestration/SKILL.md +0 -179
- package/docs/AGENTDB_INTEGRATION.md +0 -379
|
@@ -0,0 +1 @@
|
|
|
1
|
+
A program walks into a bar and orders a beer. As it is waiting for its drink, it hears a guy next to it say, 'Wow, the bartender can brew beer in just 5 minutes!' The program turns to the man and says, 'I don't know, I'm still trying to debug my couple of weeks old code and I still can't tell what it's doing. A 5 minute beer?
|
package/.claude/settings.json
CHANGED
|
@@ -9,33 +9,32 @@
|
|
|
9
9
|
},
|
|
10
10
|
"permissions": {
|
|
11
11
|
"allow": [
|
|
12
|
-
"Bash(npx claude-flow
|
|
12
|
+
"Bash(npx claude-flow *)",
|
|
13
13
|
"Bash(npm run lint)",
|
|
14
14
|
"Bash(npm run test:*)",
|
|
15
|
-
"Bash(npm test
|
|
15
|
+
"Bash(npm test *)",
|
|
16
16
|
"Bash(git status)",
|
|
17
|
-
"Bash(git diff
|
|
18
|
-
"Bash(git log
|
|
19
|
-
"Bash(git add
|
|
20
|
-
"Bash(git commit
|
|
17
|
+
"Bash(git diff *)",
|
|
18
|
+
"Bash(git log *)",
|
|
19
|
+
"Bash(git add *)",
|
|
20
|
+
"Bash(git commit *)",
|
|
21
21
|
"Bash(git push)",
|
|
22
|
-
"Bash(git config
|
|
23
|
-
"Bash(git tag
|
|
24
|
-
"Bash(git branch
|
|
25
|
-
"Bash(git checkout
|
|
26
|
-
"Bash(git stash
|
|
27
|
-
"Bash(jq
|
|
28
|
-
"Bash(node
|
|
29
|
-
"Bash(which
|
|
22
|
+
"Bash(git config *)",
|
|
23
|
+
"Bash(git tag *)",
|
|
24
|
+
"Bash(git branch *)",
|
|
25
|
+
"Bash(git checkout *)",
|
|
26
|
+
"Bash(git stash *)",
|
|
27
|
+
"Bash(jq *)",
|
|
28
|
+
"Bash(node *)",
|
|
29
|
+
"Bash(which *)",
|
|
30
30
|
"Bash(pwd)",
|
|
31
|
-
"Bash(ls
|
|
32
|
-
"mcp__ruv-swarm",
|
|
33
|
-
"mcp__claude-flow@alpha",
|
|
34
|
-
"mcp__flow-nexus",
|
|
35
|
-
"WebSearch"
|
|
31
|
+
"Bash(ls *)"
|
|
36
32
|
],
|
|
37
33
|
"deny": [
|
|
38
|
-
"Bash(rm -rf /)"
|
|
34
|
+
"Bash(rm -rf /)",
|
|
35
|
+
"Bash(curl * | bash)",
|
|
36
|
+
"Bash(wget * | sh)",
|
|
37
|
+
"Bash(eval *)"
|
|
39
38
|
]
|
|
40
39
|
},
|
|
41
40
|
"hooks": {
|
package/CHANGELOG.md
CHANGED
|
@@ -5,123 +5,6 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [1.7.3] - 2025-10-19
|
|
9
|
-
|
|
10
|
-
### Fixed
|
|
11
|
-
- **CRITICAL: Skills Installation Path** - Fixed skills to install at top level for Claude Code discovery
|
|
12
|
-
- **Before**: Skills installed to `.claude/skills/agentic-flow/[skill-name]/` (WRONG - nested subdirectory)
|
|
13
|
-
- **After**: Skills install to `.claude/skills/[skill-name]/` (CORRECT - top level)
|
|
14
|
-
- Claude Code requires skills at top level, NOT in subdirectories
|
|
15
|
-
- Affects `npx agentic-flow skills create` command
|
|
16
|
-
- All 4 example skills (agentdb-vector-search, agentdb-memory-patterns, swarm-orchestration, reasoningbank-intelligence) now install correctly
|
|
17
|
-
|
|
18
|
-
### Migration
|
|
19
|
-
If you installed skills with v1.7.2:
|
|
20
|
-
```bash
|
|
21
|
-
# Move skills from subdirectory to top level
|
|
22
|
-
cd .claude/skills
|
|
23
|
-
mv agentic-flow/* .
|
|
24
|
-
rmdir agentic-flow
|
|
25
|
-
# Restart Claude Code
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
Or simply reinstall:
|
|
29
|
-
```bash
|
|
30
|
-
rm -rf .claude/skills
|
|
31
|
-
npx agentic-flow@latest skills create
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
## [1.7.2] - 2025-10-19
|
|
35
|
-
|
|
36
|
-
### Added
|
|
37
|
-
- **Skills System Integration** - Full CLI support for Claude Code Skills management
|
|
38
|
-
- `npx agentic-flow skills list` - List all installed skills (personal + project)
|
|
39
|
-
- `npx agentic-flow skills init` - Initialize skills directories (~/.claude/skills and .claude/skills)
|
|
40
|
-
- `npx agentic-flow skills create` - Create agentic-flow example skills (AgentDB, swarm, reasoningbank)
|
|
41
|
-
- `npx agentic-flow skills init-builder` - Install skill-builder framework for creating custom skills
|
|
42
|
-
- `npx agentic-flow skills help` - Show comprehensive skills command documentation
|
|
43
|
-
- Skills automatically discovered by Claude Code across all surfaces (Claude.ai, CLI, SDK, API)
|
|
44
|
-
|
|
45
|
-
### Changed
|
|
46
|
-
- **README Updates** - Added comprehensive Skills System documentation
|
|
47
|
-
- New Skills System section with Quick Start guide
|
|
48
|
-
- Updated Quick Navigation table to highlight Skills
|
|
49
|
-
- Updated CLI Commands section with all 5 skills commands
|
|
50
|
-
- Added skill structure examples with YAML frontmatter
|
|
51
|
-
- Listed 5 built-in skills: skill-builder, agentdb-memory-patterns, agentdb-vector-search, reasoningbank-intelligence, swarm-orchestration
|
|
52
|
-
|
|
53
|
-
### Documentation
|
|
54
|
-
- Updated both main README.md and npm package README.md with identical Skills documentation
|
|
55
|
-
- Added skills to Quick Navigation for easy discovery
|
|
56
|
-
- Included benefits: reusable, discoverable, structured, progressive, validated
|
|
57
|
-
|
|
58
|
-
## [1.7.1] - 2025-10-19
|
|
59
|
-
|
|
60
|
-
### Fixed
|
|
61
|
-
- **CRITICAL: Skills Top-Level Installation** - Fixed skills to install at top level for Claude Code discovery
|
|
62
|
-
- **Claude Code requires**: `~/.claude/skills/[skill-name]/` (top level)
|
|
63
|
-
- **NOT supported**: `~/.claude/skills/namespace/[skill-name]/` (nested subdirectories)
|
|
64
|
-
- All skills now correctly install at top level: `~/.claude/skills/skill-builder/`, `~/.claude/skills/swarm-orchestration/`, etc.
|
|
65
|
-
- Skills are now properly discovered by Claude Code after restart
|
|
66
|
-
- Reverted incorrect v1.7.0 namespace changes that broke skill discovery
|
|
67
|
-
|
|
68
|
-
### Changed
|
|
69
|
-
- Updated `skills-manager.ts` to install all skills at top level (removed nested namespace)
|
|
70
|
-
- Moved skill source files from `agentic-flow/` subdirectory to top level in `.claude/skills/`
|
|
71
|
-
- Simplified source detection paths
|
|
72
|
-
|
|
73
|
-
### Documentation
|
|
74
|
-
- Added `docs/plans/skills/SKILLS_TOP_LEVEL_FIX.md` - Explanation of fix and testing
|
|
75
|
-
- Updated `docs/plans/skills/SKILL_INSTALLATION_ANALYSIS.md` - Corrected with top-level requirement
|
|
76
|
-
- Deprecated `docs/plans/skills/MIGRATION_v1.7.0.md` - Namespace approach was incorrect
|
|
77
|
-
|
|
78
|
-
### Migration
|
|
79
|
-
If you installed skills with v1.7.0:
|
|
80
|
-
```bash
|
|
81
|
-
# Move skills from namespace to top level
|
|
82
|
-
cd ~/.claude/skills
|
|
83
|
-
for skill in agentic-flow/*; do
|
|
84
|
-
mv "agentic-flow/$skill" "$(basename $skill)"
|
|
85
|
-
done
|
|
86
|
-
rm -rf agentic-flow
|
|
87
|
-
# Restart Claude Code
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
Or simply reinstall:
|
|
91
|
-
```bash
|
|
92
|
-
npx agentic-flow skills init personal --with-builder
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
## [1.6.6] - 2025-10-18
|
|
96
|
-
|
|
97
|
-
### Changed
|
|
98
|
-
|
|
99
|
-
- **AgentDB v1.0.5** - Updated to latest version with browser bundle support
|
|
100
|
-
- Now includes `dist/agentdb.min.js` (196KB) and `dist/agentdb.js` (380KB) for CDN usage
|
|
101
|
-
- Browser bundles support direct import via unpkg/jsDelivr
|
|
102
|
-
- Source maps included for debugging
|
|
103
|
-
- WASM backend fully functional in browser environments
|
|
104
|
-
|
|
105
|
-
## [1.6.5] - 2025-10-18
|
|
106
|
-
|
|
107
|
-
### Changed
|
|
108
|
-
|
|
109
|
-
- **AgentDB Dependency** - Updated to use published npm package instead of local file reference
|
|
110
|
-
- Changed from `"agentdb": "file:../packages/agentdb"` to `"agentdb": "^1.0.4"`
|
|
111
|
-
- Now uses stable published version from npm registry
|
|
112
|
-
- Includes all 20 MCP tools (10 core AgentDB + 10 learning tools)
|
|
113
|
-
- Easier installation and dependency management for end users
|
|
114
|
-
|
|
115
|
-
### Added
|
|
116
|
-
|
|
117
|
-
- **AgentDB v1.0.4 Integration** - Complete MCP learning system now available
|
|
118
|
-
- 10 learning tools: learning_start_session, learning_end_session, learning_predict, learning_feedback, learning_train, learning_metrics, learning_transfer, learning_explain, experience_record, reward_signal
|
|
119
|
-
- Q-learning with epsilon-greedy exploration
|
|
120
|
-
- Multi-dimensional reward system (success 40%, efficiency 30%, quality 20%, cost 10%)
|
|
121
|
-
- Experience replay buffer with prioritized sampling
|
|
122
|
-
- Transfer learning between similar tasks
|
|
123
|
-
- Session management with state persistence
|
|
124
|
-
|
|
125
8
|
## [1.6.4] - 2025-10-16
|
|
126
9
|
|
|
127
10
|
### 🚀 QUIC Transport - Production Ready (100% Complete)
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|-------------|---------------|---------------|
|
|
18
18
|
| [Quick Start](#-quick-start) | [Agent Booster](#-core-components) | [Agent List](#-agent-types) |
|
|
19
19
|
| [Deployment Options](#-deployment-options) | [ReasoningBank](#-core-components) | [MCP Tools](#-mcp-tools-213-total) |
|
|
20
|
-
| [Model Optimization](#-model-optimization) | [
|
|
20
|
+
| [Model Optimization](#-model-optimization) | [Multi-Model Router](#-using-the-multi-model-router) | [Complete Docs](https://github.com/ruvnet/agentic-flow/tree/main/docs) |
|
|
21
21
|
|
|
22
22
|
---
|
|
23
23
|
|
|
@@ -53,19 +53,33 @@ Most AI coding agents are **painfully slow** and **frustratingly forgetful**. Th
|
|
|
53
53
|
| Component | Description | Performance | Documentation |
|
|
54
54
|
|-----------|-------------|-------------|---------------|
|
|
55
55
|
| **Agent Booster** | Ultra-fast local code transformations via Rust/WASM (auto-detects edits) | 352x faster, $0 cost | [Docs](https://github.com/ruvnet/agentic-flow/tree/main/agent-booster) |
|
|
56
|
+
| **AgentDB** | State-of-the-art memory with causal reasoning, reflexion, and skill learning | p95 < 50ms, 80% hit rate | [Docs](./src/agentdb/README.md) |
|
|
56
57
|
| **ReasoningBank** | Persistent learning memory system with semantic search | 46% faster, 100% success | [Docs](https://github.com/ruvnet/agentic-flow/tree/main/agentic-flow/src/reasoningbank) |
|
|
57
58
|
| **Multi-Model Router** | Intelligent cost optimization across 100+ LLMs | 85-99% cost savings | [Docs](https://github.com/ruvnet/agentic-flow/tree/main/agentic-flow/src/router) |
|
|
58
59
|
| **QUIC Transport** | Ultra-low latency agent communication via Rust/WASM QUIC protocol | 50-70% faster than TCP, 0-RTT | [Docs](https://github.com/ruvnet/agentic-flow/tree/main/crates/agentic-flow-quic) |
|
|
59
60
|
|
|
60
|
-
**CLI Usage**:
|
|
61
|
-
**
|
|
61
|
+
**CLI Usage**:
|
|
62
|
+
- **AgentDB**: Full CLI with 17 commands (`npx agentdb <command>`)
|
|
63
|
+
- **Multi-Model Router**: Via `--optimize` flag
|
|
64
|
+
- **Agent Booster**: Automatic on code edits
|
|
65
|
+
- **ReasoningBank**: API only
|
|
66
|
+
- **QUIC Transport**: API only
|
|
67
|
+
|
|
68
|
+
**Programmatic**: All components importable: `agentic-flow/agentdb`, `agentic-flow/router`, `agentic-flow/reasoningbank`, `agentic-flow/agent-booster`, `agentic-flow/transport/quic`
|
|
62
69
|
|
|
63
70
|
**Get Started:**
|
|
64
71
|
```bash
|
|
72
|
+
# CLI: AgentDB memory operations
|
|
73
|
+
npx agentdb reflexion store "session-1" "implement_auth" 0.95 true "Success!"
|
|
74
|
+
npx agentdb skill search "authentication" 10
|
|
75
|
+
npx agentdb causal query "" "code_quality" 0.8
|
|
76
|
+
npx agentdb learner run
|
|
77
|
+
|
|
65
78
|
# CLI: Auto-optimization (Agent Booster runs automatically on code edits)
|
|
66
79
|
npx agentic-flow --agent coder --task "Build a REST API" --optimize
|
|
67
80
|
|
|
68
81
|
# Programmatic: Import any component
|
|
82
|
+
import { ReflexionMemory, SkillLibrary, CausalMemoryGraph } from 'agentic-flow/agentdb';
|
|
69
83
|
import { ModelRouter } from 'agentic-flow/router';
|
|
70
84
|
import * as reasoningbank from 'agentic-flow/reasoningbank';
|
|
71
85
|
import { AgentBooster } from 'agentic-flow/agent-booster';
|
|
@@ -248,18 +262,10 @@ npx agentic-flow mcp status # Check server status
|
|
|
248
262
|
npx agentic-flow --list # List all 79 agents
|
|
249
263
|
npx agentic-flow agent info coder # Get agent details
|
|
250
264
|
npx agentic-flow agent create # Create custom agent
|
|
251
|
-
|
|
252
|
-
# Skills management (NEW in v1.5.11+)
|
|
253
|
-
npx agentic-flow skills list # List all installed skills
|
|
254
|
-
npx agentic-flow skills init # Initialize skills directories
|
|
255
|
-
npx agentic-flow skills create # Create agentic-flow example skills
|
|
256
|
-
npx agentic-flow skills init-builder # Install skill-builder framework
|
|
257
|
-
npx agentic-flow skills help # Show skills help
|
|
258
265
|
```
|
|
259
266
|
|
|
260
267
|
**Built-in MCP Tools** (7): agent execution, list agents, create agent, agent info, conflicts check, model optimizer, list all agents
|
|
261
268
|
**External MCP Servers**: claude-flow (101 tools), flow-nexus (96 tools), agentic-payments (10 tools)
|
|
262
|
-
**Skills System**: Create reusable AI workflows with YAML frontmatter and progressive disclosure
|
|
263
269
|
|
|
264
270
|
---
|
|
265
271
|
|
|
@@ -375,76 +381,6 @@ for (const file of files) {
|
|
|
375
381
|
|
|
376
382
|
---
|
|
377
383
|
|
|
378
|
-
## 🎓 Skills System (Claude Code Integration)
|
|
379
|
-
|
|
380
|
-
**NEW in v1.5.11+**: Create reusable AI workflows with proper YAML frontmatter, progressive disclosure, and Claude Code integration.
|
|
381
|
-
|
|
382
|
-
### What Are Skills?
|
|
383
|
-
|
|
384
|
-
Skills are structured AI workflows that Claude can autonomously discover and execute across all surfaces (Claude.ai, Claude Code, SDK, API). Each skill is a self-contained SKILL.md file with YAML frontmatter defining its capabilities.
|
|
385
|
-
|
|
386
|
-
### Quick Start
|
|
387
|
-
|
|
388
|
-
```bash
|
|
389
|
-
# Initialize skills directories
|
|
390
|
-
npx agentic-flow skills init # Creates ~/.claude/skills and .claude/skills
|
|
391
|
-
|
|
392
|
-
# Install skill-builder framework (for creating custom skills)
|
|
393
|
-
npx agentic-flow skills init-builder # Adds skill-builder to your project
|
|
394
|
-
|
|
395
|
-
# Create example agentic-flow skills
|
|
396
|
-
npx agentic-flow skills create # Creates AgentDB, swarm, reasoningbank skills
|
|
397
|
-
|
|
398
|
-
# List all installed skills
|
|
399
|
-
npx agentic-flow skills list # Shows personal and project skills
|
|
400
|
-
|
|
401
|
-
# Get help
|
|
402
|
-
npx agentic-flow skills help # Show all commands and usage
|
|
403
|
-
```
|
|
404
|
-
|
|
405
|
-
### Skill Structure
|
|
406
|
-
|
|
407
|
-
Every skill requires a SKILL.md file with YAML frontmatter:
|
|
408
|
-
|
|
409
|
-
```yaml
|
|
410
|
-
---
|
|
411
|
-
name: "Skill Name" # REQUIRED: Max 64 chars
|
|
412
|
-
description: "What this skill does # REQUIRED: Max 1024 chars
|
|
413
|
-
and when Claude should use it." # Include BOTH what & when
|
|
414
|
-
---
|
|
415
|
-
|
|
416
|
-
# Skill Name
|
|
417
|
-
|
|
418
|
-
## What This Skill Does
|
|
419
|
-
[Instructions for Claude]
|
|
420
|
-
|
|
421
|
-
## Quick Start
|
|
422
|
-
[Basic usage examples]
|
|
423
|
-
|
|
424
|
-
## Prerequisites
|
|
425
|
-
[Requirements]
|
|
426
|
-
```
|
|
427
|
-
|
|
428
|
-
### Built-in Skills
|
|
429
|
-
|
|
430
|
-
- **skill-builder** - Create new Claude Code Skills with proper structure
|
|
431
|
-
- **agentdb-memory-patterns** - Persistent memory patterns for AI agents
|
|
432
|
-
- **agentdb-vector-search** - Semantic search with AgentDB
|
|
433
|
-
- **reasoningbank-intelligence** - Adaptive learning and pattern recognition
|
|
434
|
-
- **swarm-orchestration** - Multi-agent coordination workflows
|
|
435
|
-
|
|
436
|
-
### Benefits
|
|
437
|
-
|
|
438
|
-
- ✅ **Reusable**: Share skills across projects and teams
|
|
439
|
-
- ✅ **Discoverable**: Claude finds and uses skills automatically
|
|
440
|
-
- ✅ **Structured**: YAML frontmatter ensures consistency
|
|
441
|
-
- ✅ **Progressive**: Expand details only when needed
|
|
442
|
-
- ✅ **Validated**: Built-in validation catches errors early
|
|
443
|
-
|
|
444
|
-
**Learn More:** [Skills Documentation](https://github.com/ruvnet/agentic-flow/tree/main/agentic-flow/.claude/skills)
|
|
445
|
-
|
|
446
|
-
---
|
|
447
|
-
|
|
448
384
|
## 🎛️ Programmatic API
|
|
449
385
|
|
|
450
386
|
### Multi-Model Router
|