mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-28 14:07:55 +00:00
New example configs: - deep-research.toml — multi-hop research with citations - code-assistant.toml — orchestrator with code execution + file I/O - scheduled-monitor.toml — persistent operative on cron schedule - chat-simple.toml — lightweight chat, no tools CLI: - `jarvis init --preset <name>` installs any starter config in one command - Presets: morning-digest-mac, morning-digest-linux, morning-digest-minimal, deep-research, code-assistant, scheduled-monitor, chat-simple All configs tested live on M2 Max with Ollama + Qwen3.5 9B. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
670 B
TOML
22 lines
670 B
TOML
# Code Assistant — agent with code execution, file I/O, and shell access
|
|
# Copy to ~/.openjarvis/config.toml
|
|
#
|
|
# Usage:
|
|
# jarvis ask "Write a Python script that parses CSV files"
|
|
# jarvis ask "Read main.py and explain the architecture"
|
|
# jarvis ask --agent orchestrator "Find and fix the bug in test_utils.py"
|
|
|
|
[engine]
|
|
default = "ollama"
|
|
|
|
[intelligence]
|
|
default_model = "qwen3.5:9b"
|
|
# default_model = "qwen3.5:35b" # Better for complex code tasks
|
|
|
|
[agent]
|
|
default_agent = "orchestrator" # Multi-turn with tool selection
|
|
max_turns = 10
|
|
|
|
[tools]
|
|
enabled = ["code_interpreter", "file_read", "file_write", "shell_exec", "web_search", "think", "calculator"]
|