This is an automated email from the ASF dual-hosted git repository. xtsong pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-agents.git
commit 5e395358e6eb646911f276c6c44591904a908e69 Author: WenjinXie <[email protected]> AuthorDate: Thu Jan 22 17:23:14 2026 +0800 [example] Fix the missing parameter type modification. --- .../org/apache/flink/agents/examples/agents/ProductSuggestionAgent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/src/main/java/org/apache/flink/agents/examples/agents/ProductSuggestionAgent.java b/examples/src/main/java/org/apache/flink/agents/examples/agents/ProductSuggestionAgent.java index b7742f20..4daac9ad 100644 --- a/examples/src/main/java/org/apache/flink/agents/examples/agents/ProductSuggestionAgent.java +++ b/examples/src/main/java/org/apache/flink/agents/examples/agents/ProductSuggestionAgent.java @@ -60,7 +60,7 @@ public class ProductSuggestionAgent extends Agent { return ResourceDescriptor.Builder.newBuilder(OLLAMA_CHAT_MODEL_SETUP) .addInitialArgument("connection", "ollamaChatModelConnection") .addInitialArgument("model", "qwen3:8b") - .addInitialArgument("extract_reasoning", "true") + .addInitialArgument("extract_reasoning", true) .addInitialArgument("prompt", "productSuggestionPrompt") .build(); }
