mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-30 19:02:16 +00:00
Trace-driven learning pipeline: - TrainingDataMiner: extract SFT/routing/agent pairs from traces - LoRATrainer: fine-tune local models from trace-derived data - AgentConfigEvolver: rewrite agent configs from trace analysis - LearningOrchestrator: coordinate mine→train→evolve cycle, wired into SystemBuilder Eval framework (15 real IPW benchmarks): - Datasets: SuperGPQA, GPQA, MMLU-Pro, MATH-500, Natural Reasoning, HLE, SimpleQA, WildChat, IPW, GAIA, FRAMES, SWE-bench, SWEfficiency, TerminalBench, TerminalBench Native - Scorers: MCQ extraction, LLM-judge, exact match, structural validation - CLI: jarvis eval list|run|compare|report Composable abstractions: - Recipe system: TOML composition of all 5 pillars (3 built-in recipes) - Agent templates: 15 pre-configured TOML manifests with system prompts - Bundled skills: 20 ready-to-use TOML skill manifests - Operator recipes: researcher (4h), correspondent (5min), sentinel (2h) 102 files changed, ~11,500 lines added. 3241 tests pass (44 skipped). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
616 B
TOML
26 lines
616 B
TOML
[recipe]
|
|
name = "coding_assistant"
|
|
description = "Code generation, review, and debugging with ReAct agent"
|
|
version = "1.0.0"
|
|
|
|
[intelligence]
|
|
model = "qwen3:8b"
|
|
quantization = "q4_K_M"
|
|
|
|
[engine]
|
|
key = "ollama"
|
|
|
|
[agent]
|
|
type = "native_react"
|
|
max_turns = 10
|
|
temperature = 0.3
|
|
tools = ["file_read", "file_write", "code_interpreter", "think", "shell_exec"]
|
|
system_prompt = "You are a coding assistant. Help the user write, review, and debug code. Use the available tools to read files, write code, and execute commands as needed."
|
|
|
|
[learning]
|
|
routing = "heuristic"
|
|
agent = "none"
|
|
|
|
[eval]
|
|
suites = ["coding", "reasoning"]
|