You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🔧 chore(context): change default model from qwen-turbo to qwen-flash
- Updated default model to "qwen:qwen-flash" in context.py and documentation files
- Modified README and CLAUDE.md to reflect new default model name
- Removed references to TestModels with specific model names in tests
- Adjusted test code to use context with default model without explicit test model overrides
- Ensured consistency across internationalized README_CN.md and README.md files
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ The primary [search tool](./src/common/tools.py) uses [Tavily](https://tavily.co
119
119
120
120
## Model Configuration
121
121
122
-
The template uses `qwen:qwen-turbo` as the default model, defined in [`src/common/context.py`](./src/common/context.py). You can configure different models in three ways:
122
+
The template uses `qwen:qwen-flash` as the default model, defined in [`src/common/context.py`](./src/common/context.py). You can configure different models in three ways:
123
123
124
124
1.**Runtime Context** (recommended for programmatic usage)
125
125
2.**Environment Variables**
@@ -240,7 +240,7 @@ In LangGraph Studio, configure models through [Assistant management](https://doc
"""Create an assistant with deepwiki explicitly enabled."""
28
26
config= {
29
27
"configurable": {
30
-
"model": TestModels.QWEN_TURBO,
31
28
"enable_deepwiki": True,
32
29
"system_prompt": "You are a helpful AI assistant with access to deepwiki tools. When asked to use deepwiki tools, you must use them to get current documentation.",
0 commit comments