From c6b1a8daa00263c9095aa68a8c50e20f6a542d21 Mon Sep 17 00:00:00 2001 From: jjyaoao Date: Tue, 11 Mar 2025 06:28:14 +0000 Subject: [PATCH 1/2] fix: fix Script path in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4a3c27f..8c83e9e 100644 --- a/README.md +++ b/README.md @@ -239,10 +239,10 @@ OWL supports various LLM backends. You can use the following scripts to run with ```bash # Run with Qwen model -python owl/run_qwen.py +python owl/run_qwen_zh.py # Run with Deepseek model -python owl/run_deepseek.py +python owl/run_deepseek_zh.py # Run with other OpenAI-compatible models python owl/run_openai_compatiable_model.py @@ -251,7 +251,7 @@ python owl/run_openai_compatiable_model.py For a simpler version that only requires an LLM API key, you can try our minimal example: ```bash -python owl/run_mini.py +python owl/run_mini_zh.py ``` You can run OWL agent with your own task by modifying the `run.py` script: From 7e0f93b765689e1819054a792de39c5836b94416 Mon Sep 17 00:00:00 2001 From: Wendong Date: Tue, 11 Mar 2025 15:44:03 +0800 Subject: [PATCH 2/2] update --- README.md | 2 +- README_zh.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8c83e9e..579063c 100644 --- a/README.md +++ b/README.md @@ -251,7 +251,7 @@ python owl/run_openai_compatiable_model.py For a simpler version that only requires an LLM API key, you can try our minimal example: ```bash -python owl/run_mini_zh.py +python owl/run_mini.py ``` You can run OWL agent with your own task by modifying the `run.py` script: diff --git a/README_zh.md b/README_zh.md index 1e162e6..e17758c 100644 --- a/README_zh.md +++ b/README_zh.md @@ -239,10 +239,10 @@ OWL 支持多种 LLM 后端。您可以使用以下脚本来运行不同的模 ```bash # 使用 Qwen 模型运行 -python owl/run_qwen.py +python owl/run_qwen_zh.py # 使用 Deepseek 模型运行 -python owl/run_deepseek.py +python owl/run_deepseek_zh.py # 使用其他 OpenAI 兼容模型运行 python owl/run_openai_compatiable_model.py