Didier Durand
commited on
Commit
·
d12683c
1
Parent(s):
be88da8
Fixing typo visible in webapp.py
Browse files
README.md
CHANGED
@@ -365,7 +365,7 @@ python examples/run_qwen_zh.py
|
|
365 |
python examples/run_deepseek_zh.py
|
366 |
|
367 |
# Run with other OpenAI-compatible models
|
368 |
-
python examples/
|
369 |
|
370 |
# Run with Azure OpenAI
|
371 |
python examples/run_azure_openai.py
|
|
|
365 |
python examples/run_deepseek_zh.py
|
366 |
|
367 |
# Run with other OpenAI-compatible models
|
368 |
+
python examples/run_openai_compatible_model.py
|
369 |
|
370 |
# Run with Azure OpenAI
|
371 |
python examples/run_azure_openai.py
|
README_zh.md
CHANGED
@@ -364,7 +364,7 @@ python examples/run_qwen_zh.py
|
|
364 |
python examples/run_deepseek_zh.py
|
365 |
|
366 |
# 使用其他 OpenAI 兼容模型运行
|
367 |
-
python examples/
|
368 |
|
369 |
# 使用 Azure OpenAI模型运行
|
370 |
python examples/run_azure_openai.py
|
|
|
364 |
python examples/run_deepseek_zh.py
|
365 |
|
366 |
# 使用其他 OpenAI 兼容模型运行
|
367 |
+
python examples/run_openai_compatible_model.py
|
368 |
|
369 |
# 使用 Azure OpenAI模型运行
|
370 |
python examples/run_azure_openai.py
|
examples/{run_openai_compatiable_model.py → run_openai_compatible_model.py}
RENAMED
File without changes
|
owl/webapp.py
CHANGED
@@ -245,7 +245,7 @@ MODULE_DESCRIPTIONS = {
|
|
245 |
"run": "Default mode: Using OpenAI model's default agent collaboration mode, suitable for most tasks.",
|
246 |
"run_mini": "Using OpenAI model with minimal configuration to process tasks",
|
247 |
"run_deepseek_zh": "Using deepseek model to process Chinese tasks",
|
248 |
-
"
|
249 |
"run_ollama": "Using local ollama model to process tasks",
|
250 |
"run_qwen_mini_zh": "Using qwen model with minimal configuration to process tasks",
|
251 |
"run_qwen_zh": "Using qwen model to process tasks",
|
|
|
245 |
"run": "Default mode: Using OpenAI model's default agent collaboration mode, suitable for most tasks.",
|
246 |
"run_mini": "Using OpenAI model with minimal configuration to process tasks",
|
247 |
"run_deepseek_zh": "Using deepseek model to process Chinese tasks",
|
248 |
+
"run_openai_compatible_model": "Using openai compatible model to process tasks",
|
249 |
"run_ollama": "Using local ollama model to process tasks",
|
250 |
"run_qwen_mini_zh": "Using qwen model with minimal configuration to process tasks",
|
251 |
"run_qwen_zh": "Using qwen model to process tasks",
|