This is an automated email from the ASF dual-hosted git repository.
wenjin272 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-agents.git
The following commit(s) were added to refs/heads/main by this push:
new e9afbfcf [bugfix][docs] Align skills agent quickstart doc model name
with code (qwen3:8b → qwen3.5:9b) (#796)
e9afbfcf is described below
commit e9afbfcf5e1c61300a0442e179b5002ab9281ac9
Author: Kerui Wang <[email protected]>
AuthorDate: Mon Jun 8 16:13:04 2026 +0800
[bugfix][docs] Align skills agent quickstart doc model name with code
(qwen3:8b → qwen3.5:9b) (#796)
---
docs/content/docs/get-started/quickstart/skills_agent.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/content/docs/get-started/quickstart/skills_agent.md
b/docs/content/docs/get-started/quickstart/skills_agent.md
index 04eb0461..c0ace154 100644
--- a/docs/content/docs/get-started/quickstart/skills_agent.md
+++ b/docs/content/docs/get-started/quickstart/skills_agent.md
@@ -99,7 +99,7 @@ class MathAgent(Agent):
return ResourceDescriptor(
clazz=ResourceName.ChatModel.OLLAMA_SETUP,
connection="ollama_server",
- model="qwen3:8b",
+ model="qwen3.5:9b",
prompt="system_prompt",
# Expose the declared skill to this model by name.
skills=["math-calculator"],
@@ -157,7 +157,7 @@ public class MathAgent extends Agent {
public static ResourceDescriptor mathModel() {
return
ResourceDescriptor.Builder.newBuilder(ResourceName.ChatModel.OLLAMA_SETUP)
.addInitialArgument("connection", "ollamaChatModelConnection")
- .addInitialArgument("model", "qwen3:8b")
+ .addInitialArgument("model", "qwen3.5:9b")
.addInitialArgument("prompt", "systemPrompt")
// Expose the declared skill to this model by name.
.addInitialArgument("skills", List.of("math-calculator"))
@@ -324,10 +324,10 @@ Download and install Ollama from the official
[website](https://ollama.com/downl
Ollama server **0.9.0** or higher is required.
{{< /hint >}}
-Then pull the qwen3:8b model, which is required by the quickstart examples.
+Then pull the qwen3.5:9b model, which is required by the quickstart examples.
```bash
-ollama pull qwen3:8b
+ollama pull qwen3.5:9b
```
### Submit Flink Agents Job to Standalone Flink Cluster