[bugfix][docs] Align skills agent quickstart doc model name with code (qwen3:8b → qwen3.5:9b)#796
Merged
Conversation
… (qwen3:8b → qwen3.5:9b)
wenjin272
reviewed
Jun 8, 2026
| {{< /hint >}} | ||
|
|
||
| Then pull the qwen3:8b model, which is required by the quickstart examples. | ||
| Then pull the qwen3:8b and qwen3.5:9b models, which are required by the quickstart examples. |
Contributor
There was a problem hiding this comment.
Do we need qwen3:8b for skills agents?
Contributor
Author
There was a problem hiding this comment.
You're right. The skills agent quickstart only uses MathAgent, which requires qwen3.5:9b. qwen3:8b is not needed on this page. I'll update to only reference qwen3.5:9b. Thanks for catching this!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Linked issue: #795
Purpose of change
The Skills Agent quickstart doc (
skills_agent.md) tells users to pullqwen3:8b, butMathAgentin both Java and Python hardcodesqwen3.5:9b. Users who follow the doc exactly hit a model-not-found error at runtime.This PR updates the documentation to match the code:
skills_agent.mdmodel="qwen3:8b"model="qwen3.5:9b""model", "qwen3:8b""model", "qwen3.5:9b"qwen3:8bqwen3:8bandqwen3.5:9bollama pullcommandollama pull qwen3:8bollama pull qwen3.5:9bThe Skills Agent example uses
qwen3.5:9b(a tool-calling-capable model suited for the math-calculator skill), which differs from theqwen3:8bused by other quickstart examples. The "Prepare Ollama" section now instructs users to pull both models.Tests
skills_agent.mdnow match the corresponding source filesAPI
No public API changes.
Documentation
doc-neededdoc-not-neededdoc-included