diff --git a/README.md b/README.md index 3cee7a76..3151cf62 100644 --- a/README.md +++ b/README.md @@ -69,13 +69,13 @@ uv run jarvis init # 2. Start Ollama and pull a model curl -fsSL https://ollama.com/install.sh | sh ollama serve & -ollama pull qwen3:8b +ollama pull qwen3.5:4b # CPU-friendly default; use qwen3.5:9b or larger if you have a GPU # 3. Ask a question uv run jarvis ask "What is the capital of France?" ``` -`jarvis init` auto-detects your hardware and recommends the best engine. Run `uv run jarvis doctor` at any time to diagnose issues. +`jarvis init` auto-detects your hardware and recommends the best engine and model size. Run `uv run jarvis doctor` at any time to diagnose issues. ## Starter Configs diff --git a/docs/getting-started/quickstart.md b/docs/getting-started/quickstart.md index b82c54f3..7603598b 100644 --- a/docs/getting-started/quickstart.md +++ b/docs/getting-started/quickstart.md @@ -14,7 +14,7 @@ OpenJarvis is a modular AI assistant framework. Here's what developers build wit === "Chat with Any Model" ```bash - jarvis ask "Explain quantum entanglement" -m qwen3:8b + jarvis ask "Explain quantum entanglement" -m qwen3.5:4b # use qwen3.5:9b or larger on GPU ``` === "Agent + Tools"