From 171c945b42c8d3859ba89f69926e7dd1edf401a2 Mon Sep 17 00:00:00 2001 From: Didier Durand Date: Thu, 20 Mar 2025 18:58:29 +0100 Subject: [PATCH] Fixing typo visible in webapp.py --- README.md | 2 +- README_zh.md | 2 +- ...enai_compatiable_model.py => run_openai_compatible_model.py} | 0 owl/webapp.py | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename examples/{run_openai_compatiable_model.py => run_openai_compatible_model.py} (100%) diff --git a/README.md b/README.md index ed139c7..3088b58 100644 --- a/README.md +++ b/README.md @@ -365,7 +365,7 @@ python examples/run_qwen_zh.py python examples/run_deepseek_zh.py # Run with other OpenAI-compatible models -python examples/run_openai_compatiable_model.py +python examples/run_openai_compatible_model.py # Run with Azure OpenAI python examples/run_azure_openai.py diff --git a/README_zh.md b/README_zh.md index 7814e2f..06b8b3d 100644 --- a/README_zh.md +++ b/README_zh.md @@ -364,7 +364,7 @@ python examples/run_qwen_zh.py python examples/run_deepseek_zh.py # 使用其他 OpenAI 兼容模型运行 -python examples/run_openai_compatiable_model.py +python examples/run_openai_compatible_model.py # 使用 Azure OpenAI模型运行 python examples/run_azure_openai.py diff --git a/examples/run_openai_compatiable_model.py b/examples/run_openai_compatible_model.py similarity index 100% rename from examples/run_openai_compatiable_model.py rename to examples/run_openai_compatible_model.py diff --git a/owl/webapp.py b/owl/webapp.py index 2bd6484..eb199e3 100644 --- a/owl/webapp.py +++ b/owl/webapp.py @@ -245,7 +245,7 @@ MODULE_DESCRIPTIONS = { "run": "Default mode: Using OpenAI model's default agent collaboration mode, suitable for most tasks.", "run_mini": "Using OpenAI model with minimal configuration to process tasks", "run_deepseek_zh": "Using deepseek model to process Chinese tasks", - "run_openai_compatiable_model": "Using openai compatible model to process tasks", + "run_openai_compatible_model": "Using openai compatible model to process tasks", "run_ollama": "Using local ollama model to process tasks", "run_qwen_mini_zh": "Using qwen model with minimal configuration to process tasks", "run_qwen_zh": "Using qwen model to process tasks",