update readme

This commit is contained in:
lazychih114
2025-03-09 00:38:27 +08:00
parent 9723cb799b
commit b0d6d27d53
2 changed files with 20 additions and 4 deletions

View File

@@ -129,7 +129,10 @@ playwright install
In the `owl/.env_example` file, you will find all the necessary API keys along with the websites where you can register for each service. To use these API services, follow these steps:
1. *Copy and Rename*: Duplicate the `.env_example` file and rename the copy to `.env`.
2. *Fill in Your Keys*: Open the `.env` file and insert your API keys in the corresponding fields.
```bash
cp owl/.env_template .env
```
2. *Fill in Your Keys*: Open the `.env` file and insert your API keys in the corresponding fields. (For the minimal example (`run_mini.py`), you only need to configure the LLM API key (e.g., OPENAI_API_KEY).)
3. *For using more other models*: please refer to our CAMEL models docs:https://docs.camel-ai.org/key_modules/models.html#supported-model-platforms-in-camel
@@ -137,11 +140,18 @@ In the `owl/.env_example` file, you will find all the necessary API keys along w
# 🚀 Quick Start
Run the following minimal example:
Run the following demo case:
```bash
python owl/run.py
```
For a simpler version that only requires an LLM API key, you can try our minimal example:
```bash
python owl/run_mini.py
```
You can run OWL agent with your own task by modifying the `run.py` script:
```python