rosemarYuan opened a new pull request, #796: URL: https://github.com/apache/flink-agents/pull/796
<!-- * Thank you very much for contributing to Flink Agents. * Please add the relevant components in the PR title. E.g., [api], [runtime], [java], [python], [hotfix], etc. --> <!-- Please link the PR to the relevant issue(s). Hotfix doesn't need this. --> Linked issue: #795 ### Purpose of change The Skills Agent quickstart doc (`skills_agent.md`) tells users to pull `qwen3:8b`, but `MathAgent` in both Java and Python hardcodes `qwen3.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: | Location in `skills_agent.md` | Line | Before | After | |---|---|---|---| | Python code block | 102 | `model="qwen3:8b"` | `model="qwen3.5:9b"` | | Java code block | 160 | `"model", "qwen3:8b"` | `"model", "qwen3.5:9b"` | | "Prepare Ollama" description | 327 | `qwen3:8b` | `qwen3:8b` and `qwen3.5:9b` | | `ollama pull` command | 330 | `ollama pull qwen3:8b` | adds `ollama pull qwen3.5:9b` | The Skills Agent example uses `qwen3.5:9b` (a tool-calling-capable model suited for the math-calculator skill), which differs from the `qwen3:8b` used by other quickstart examples. The "Prepare Ollama" section now instructs users to pull both models. ### Tests - Verified all model references in `skills_agent.md` now match the corresponding source files - No code changes ### API No public API changes. ### Documentation - [ ] `doc-needed` - [ ] `doc-not-needed` - [x] `doc-included` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
