shank commited on
Commit ·
a2ff803
1
Parent(s): 22cb7e7
docs: updated the readme and added a license
Browse files
README.md
CHANGED
|
@@ -83,8 +83,11 @@ uvicorn env.server:app --host 0.0.0.0 --port 8000
|
|
| 83 |
|
| 84 |
### 🤖 Running an Agent (OpenEnv Baseline)
|
| 85 |
```bash
|
| 86 |
-
export
|
| 87 |
-
|
|
|
|
|
|
|
|
|
|
| 88 |
```
|
| 89 |
|
| 90 |
---
|
|
|
|
| 83 |
|
| 84 |
### 🤖 Running an Agent (OpenEnv Baseline)
|
| 85 |
```bash
|
| 86 |
+
export API_BASE_URL="https://api.openai.com/v1"
|
| 87 |
+
export MODEL_NAME="gpt-4o"
|
| 88 |
+
export HF_TOKEN="your_openai_key"
|
| 89 |
+
export ENV_BASE_URL="http://localhost:8000"
|
| 90 |
+
python inference.py
|
| 91 |
```
|
| 92 |
|
| 93 |
---
|