Commit
·
bc33508
1
Parent(s):
53e64ff
chore: update requirement.txt and readme
Browse files- README.md +21 -10
- requirements.txt +143 -102
README.md
CHANGED
@@ -13,40 +13,51 @@ Our vision is to revolutionize how AI agents collaborate to solve real-world tas
|
|
13 |
|
14 |
- **[2025.03.06]**: We open-source the codebase of 🦉 OWL project.
|
15 |
|
16 |
-
|
17 |
|
18 |
-
|
19 |
|
20 |
```bash
|
21 |
-
git clone
|
|
|
22 |
```
|
23 |
|
24 |
-
|
25 |
|
|
|
26 |
```bash
|
27 |
conda create -n owl python=3.11
|
28 |
conda activate owl
|
29 |
```
|
30 |
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
```bash
|
34 |
-
pip install -r requirements.txt
|
35 |
```
|
36 |
|
37 |
-
|
38 |
|
39 |
In the `.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:
|
40 |
|
41 |
1. *Copy and Rename*: Duplicate the `.env.example` file and rename the copy to `.env`.
|
42 |
-
2. *Fill in Your Keys*: Open the
|
43 |
|
44 |
-
|
45 |
|
46 |
Run the following minimal example:
|
47 |
|
48 |
```bash
|
49 |
-
python run.py
|
50 |
```
|
51 |
|
52 |
# 🧪 Experiments
|
|
|
13 |
|
14 |
- **[2025.03.06]**: We open-source the codebase of 🦉 OWL project.
|
15 |
|
16 |
+
## 🛠️ Installation
|
17 |
|
18 |
+
### **Clone the Github repository**
|
19 |
|
20 |
```bash
|
21 |
+
git clone https://github.com/camel-ai/owl.git
|
22 |
+
cd owl
|
23 |
```
|
24 |
|
25 |
+
### **Set up Environment**
|
26 |
|
27 |
+
Using Conda (recommended):
|
28 |
```bash
|
29 |
conda create -n owl python=3.11
|
30 |
conda activate owl
|
31 |
```
|
32 |
|
33 |
+
Using venv (alternative):
|
34 |
+
```bash
|
35 |
+
python -m venv owl_env
|
36 |
+
# On Windows
|
37 |
+
owl_env\Scripts\activate
|
38 |
+
# On Unix or MacOS
|
39 |
+
source owl_env/bin/activate
|
40 |
+
```
|
41 |
+
|
42 |
+
### **Install Dependencies**
|
43 |
|
44 |
```bash
|
45 |
+
python -m pip install -r requirements.txt
|
46 |
```
|
47 |
|
48 |
+
### **Setup Environment Variables**
|
49 |
|
50 |
In the `.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:
|
51 |
|
52 |
1. *Copy and Rename*: Duplicate the `.env.example` file and rename the copy to `.env`.
|
53 |
+
2. *Fill in Your Keys*: Open the `.env` file and insert your API keys in the corresponding fields.
|
54 |
|
55 |
+
## 🚀 Quick Start
|
56 |
|
57 |
Run the following minimal example:
|
58 |
|
59 |
```bash
|
60 |
+
python owl/run.py
|
61 |
```
|
62 |
|
63 |
# 🧪 Experiments
|
requirements.txt
CHANGED
@@ -1,102 +1,143 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
sympy
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
numpy>=1.26.0
|
3 |
+
openai>=1.59.7
|
4 |
+
tiktoken>=0.7.0
|
5 |
+
colorama>=0.4.6
|
6 |
+
jsonschema>=4.0.0
|
7 |
+
protobuf>=5.0.0
|
8 |
+
docstring-parser>=0.15.0
|
9 |
+
pydantic>=1.9.0,<2.10.0
|
10 |
+
eval-type-backport==0.2.0
|
11 |
+
curl_cffi==0.6.2
|
12 |
+
httpx>=0.28.0,<1.0.0
|
13 |
+
psutil>=5.9.8
|
14 |
+
pillow>=10.1.0,<11.0.0
|
15 |
+
retry>=0.9.2
|
16 |
+
loguru>=0.7.3
|
17 |
+
scenedetect>=0.6.5.2
|
18 |
+
openpyxl>=3.1.5
|
19 |
+
tabulate>=0.9.0
|
20 |
+
xls2xlsx>=0.2.0
|
21 |
+
docx2markdown>=0.1.1
|
22 |
+
chunkr_ai>=0.0.41
|
23 |
+
playwright>=1.50.0
|
24 |
+
html2text>=2024.2.26
|
25 |
+
|
26 |
+
# Optional dependencies - Model platforms
|
27 |
+
litellm>=1.38.1
|
28 |
+
mistralai>=1.1.0
|
29 |
+
reka-api>=3.0.8
|
30 |
+
anthropic>=0.42.0
|
31 |
+
cohere>=5.11.0
|
32 |
+
fish-audio-sdk>=2024.12.5
|
33 |
+
|
34 |
+
# Optional dependencies - Huggingface ecosystem
|
35 |
+
transformers>=4.0.0
|
36 |
+
diffusers>=0.25.0
|
37 |
+
accelerate>=0.26.0
|
38 |
+
datasets>=3.0.0
|
39 |
+
torch>=2.0.0
|
40 |
+
soundfile>=0.13.0
|
41 |
+
sentencepiece>=0.2.0
|
42 |
+
opencv-python>=4.0.0
|
43 |
+
|
44 |
+
# Optional dependencies - Core RAG components
|
45 |
+
sentence-transformers>=3.0.1
|
46 |
+
qdrant-client>=1.9.0
|
47 |
+
pymilvus>=2.4.0
|
48 |
+
rank-bm25>=0.2.2
|
49 |
+
|
50 |
+
# Optional dependencies - Storage solutions
|
51 |
+
neo4j>=5.18.0
|
52 |
+
nebula3-python==3.8.2
|
53 |
+
redis>=5.0.6
|
54 |
+
azure-storage-blob>=12.21.0
|
55 |
+
google-cloud-storage>=2.18.0
|
56 |
+
botocore>=1.35.3
|
57 |
+
|
58 |
+
# Optional dependencies - Document processing tools
|
59 |
+
beautifulsoup4>=4.0.0
|
60 |
+
docx2txt>=0.8.0
|
61 |
+
PyMuPDF>=1.22.5
|
62 |
+
unstructured==0.16.20
|
63 |
+
prance>=23.6.21.0
|
64 |
+
openapi-spec-validator>=0.7.1
|
65 |
+
pandasai>=2.3.0
|
66 |
+
|
67 |
+
# Optional dependencies - Media processing tools
|
68 |
+
imageio[pyav]>=2.34.2
|
69 |
+
pydub>=0.25.1
|
70 |
+
yt-dlp>=2024.11.4
|
71 |
+
ffmpeg-python>=0.2.0
|
72 |
+
|
73 |
+
# Optional dependencies - Web and API tools
|
74 |
+
wikipedia>=1.0.0
|
75 |
+
linkup-sdk>=0.2.1
|
76 |
+
duckduckgo-search>=6.3.5
|
77 |
+
newspaper3k>=0.2.8
|
78 |
+
wolframalpha>=5.0.0
|
79 |
+
pyowm>=3.3.0
|
80 |
+
googlemaps>=4.10.0
|
81 |
+
requests_oauthlib>=1.3.1
|
82 |
+
firecrawl-py>=1.0.0
|
83 |
+
apify_client>=1.8.1
|
84 |
+
tavily-python>=0.5.0
|
85 |
+
dappier>=0.3.3
|
86 |
+
sympy>=1.13.3
|
87 |
+
|
88 |
+
# Optional dependencies - Communication platform tools
|
89 |
+
slack-sdk>=3.27.2
|
90 |
+
slack-bolt>=1.20.1
|
91 |
+
pygithub>=2.3.0
|
92 |
+
pyTelegramBotAPI>=4.18.0
|
93 |
+
discord.py>=2.3.2
|
94 |
+
notion-client>=2.2.1
|
95 |
+
praw>=7.7.1
|
96 |
+
|
97 |
+
# Optional dependencies - Data science and analytics tools
|
98 |
+
rouge>=1.0.1
|
99 |
+
aiosqlite>=0.20.0
|
100 |
+
textblob>=0.17.1
|
101 |
+
datacommons>=1.4.3
|
102 |
+
datacommons_pandas>=0.0.3
|
103 |
+
pandas>=1.5.3
|
104 |
+
stripe>=11.3.0
|
105 |
+
networkx>=3.4.2
|
106 |
+
|
107 |
+
# Optional dependencies - Research tools
|
108 |
+
scholarly[tor]==1.7.11
|
109 |
+
arxiv>=2.1.3
|
110 |
+
arxiv2text>=0.1.14
|
111 |
+
|
112 |
+
# Optional dependencies - Development tools
|
113 |
+
outlines>=0.1.7
|
114 |
+
docker>=7.1.0
|
115 |
+
jupyter_client>=8.6.2
|
116 |
+
ipykernel>=6.0.0
|
117 |
+
agentops>=0.3.21
|
118 |
+
e2b-code-interpreter>=1.0.3
|
119 |
+
tree-sitter-python>=0.23.6
|
120 |
+
tree-sitter>=0.23.2
|
121 |
+
pyyaml>=6.0.2
|
122 |
+
|
123 |
+
# Development and testing tools
|
124 |
+
pytest>=7.0.0
|
125 |
+
pytest-asyncio>=0.23.0
|
126 |
+
mock>=5.0.0
|
127 |
+
pytest-cov>=4.0.0
|
128 |
+
ruff>=0.7.0
|
129 |
+
mypy>=1.5.1
|
130 |
+
toml>=0.10.2
|
131 |
+
pre-commit>=3.0.0
|
132 |
+
gradio>=3.0.0
|
133 |
+
|
134 |
+
# Type stubs
|
135 |
+
types-Pillow
|
136 |
+
types-Pygments
|
137 |
+
types-mock
|
138 |
+
types-regex
|
139 |
+
types-setuptools
|
140 |
+
types-tqdm
|
141 |
+
types-colorama>=0.0.0
|
142 |
+
types-requests>=2.0.0
|
143 |
+
types-PyYAML>=6.0.0
|