webagents 0.2.0__py3-none-any.whl → 0.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- webagents/agents/skills/ecosystem/crewai/__init__.py +3 -1
- webagents/agents/skills/ecosystem/crewai/skill.py +158 -0
- webagents/agents/skills/ecosystem/database/__init__.py +3 -1
- webagents/agents/skills/ecosystem/database/skill.py +522 -0
- webagents/agents/skills/ecosystem/mongodb/__init__.py +3 -0
- webagents/agents/skills/ecosystem/mongodb/skill.py +428 -0
- webagents/agents/skills/ecosystem/n8n/README.md +287 -0
- webagents/agents/skills/ecosystem/n8n/__init__.py +3 -0
- webagents/agents/skills/ecosystem/n8n/skill.py +341 -0
- webagents/agents/skills/ecosystem/x_com/README.md +401 -0
- webagents/agents/skills/ecosystem/x_com/__init__.py +3 -0
- webagents/agents/skills/ecosystem/x_com/skill.py +1048 -0
- webagents/agents/skills/ecosystem/zapier/README.md +363 -0
- webagents/agents/skills/ecosystem/zapier/__init__.py +3 -0
- webagents/agents/skills/ecosystem/zapier/skill.py +337 -0
- {webagents-0.2.0.dist-info → webagents-0.2.2.dist-info}/METADATA +33 -9
- {webagents-0.2.0.dist-info → webagents-0.2.2.dist-info}/RECORD +20 -9
- {webagents-0.2.0.dist-info → webagents-0.2.2.dist-info}/WHEEL +0 -0
- {webagents-0.2.0.dist-info → webagents-0.2.2.dist-info}/entry_points.txt +0 -0
- {webagents-0.2.0.dist-info → webagents-0.2.2.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: webagents
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.2
|
4
4
|
Summary: Foundation framework for the Web of Agents - build, serve and monetize AI agents
|
5
5
|
Author: Awesome Opensource Contributors and Robutler Team
|
6
6
|
License: MIT License
|
@@ -36,14 +36,31 @@ Requires-Dist: pydantic>=2.7.0
|
|
36
36
|
Requires-Dist: python-dotenv>=1.0.0
|
37
37
|
Requires-Dist: tiktoken>=0.5.0
|
38
38
|
Requires-Dist: uvicorn>=0.23.0
|
39
|
+
Provides-Extra: crewai
|
40
|
+
Requires-Dist: crewai>=0.1.0; extra == 'crewai'
|
39
41
|
Provides-Extra: dev
|
40
42
|
Requires-Dist: black>=23.0.0; extra == 'dev'
|
41
43
|
Requires-Dist: mypy>=1.0.0; extra == 'dev'
|
42
44
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
|
43
45
|
Requires-Dist: pytest>=7.0.0; extra == 'dev'
|
44
46
|
Requires-Dist: ruff>=0.0.270; extra == 'dev'
|
47
|
+
Provides-Extra: ecosystem
|
48
|
+
Requires-Dist: crewai>=0.1.0; extra == 'ecosystem'
|
49
|
+
Requires-Dist: httpx>=0.24.0; extra == 'ecosystem'
|
50
|
+
Requires-Dist: psycopg2-binary>=2.9.0; extra == 'ecosystem'
|
51
|
+
Requires-Dist: pymongo>=4.0.0; extra == 'ecosystem'
|
52
|
+
Requires-Dist: supabase>=2.0.0; extra == 'ecosystem'
|
53
|
+
Requires-Dist: tweepy>=4.14.0; extra == 'ecosystem'
|
45
54
|
Provides-Extra: examples
|
46
55
|
Requires-Dist: openai-agents>=0.0.16; extra == 'examples'
|
56
|
+
Provides-Extra: mongodb
|
57
|
+
Requires-Dist: pymongo>=4.0.0; extra == 'mongodb'
|
58
|
+
Provides-Extra: postgresql
|
59
|
+
Requires-Dist: psycopg2-binary>=2.9.0; extra == 'postgresql'
|
60
|
+
Provides-Extra: supabase
|
61
|
+
Requires-Dist: supabase>=2.0.0; extra == 'supabase'
|
62
|
+
Provides-Extra: twitter
|
63
|
+
Requires-Dist: tweepy>=4.14.0; extra == 'twitter'
|
47
64
|
Description-Content-Type: text/markdown
|
48
65
|
|
49
66
|
# WebAgents - core framework for the Web of Agents
|
@@ -71,7 +88,14 @@ With WebAgents delegation, your agent is as powerful as the whole ecosystem, and
|
|
71
88
|
## 📦 Installation
|
72
89
|
|
73
90
|
```bash
|
91
|
+
# Core framework
|
74
92
|
pip install webagents
|
93
|
+
|
94
|
+
# With ecosystem skills (MongoDB, Supabase, CrewAI, X.com, etc.)
|
95
|
+
pip install webagents[ecosystem]
|
96
|
+
|
97
|
+
# Individual skills
|
98
|
+
pip install webagents[mongodb,crewai,twitter]
|
75
99
|
```
|
76
100
|
|
77
101
|
## 🏃♂️ Quick Start
|
@@ -203,7 +227,7 @@ export OPENAI_API_KEY="your-openai-key"
|
|
203
227
|
export WEBAGENTS_API_KEY="your-webagents-key"
|
204
228
|
```
|
205
229
|
|
206
|
-
Get your WEBAGENTS_API_KEY at https://robutler.ai
|
230
|
+
Get your WEBAGENTS_API_KEY at https://robutler.ai/developer
|
207
231
|
|
208
232
|
|
209
233
|
## 🌐 Web of Agents
|
@@ -216,23 +240,23 @@ WebAgents enables dynamic real-time orchestration where each AI agent acts as a
|
|
216
240
|
|
217
241
|
## 📚 Documentation
|
218
242
|
|
219
|
-
- **[Full Documentation](https://
|
220
|
-
- **[Skills Framework](https://
|
221
|
-
- **[Agent Architecture](https://
|
222
|
-
- **[Custom Skills](https://
|
243
|
+
- **[Full Documentation](https://robutler.ai/webagents)** - Complete guides and API reference
|
244
|
+
- **[Skills Framework](https://robutler.ai/webagents/skills/overview/)** - Deep dive into modular capabilities
|
245
|
+
- **[Agent Architecture](https://robutler.ai/webagents/agent/overview/)** - Understand agent communication
|
246
|
+
- **[Custom Skills](https://robutler.ai/webagents/skills/custom/)** - Build your own capabilities
|
223
247
|
|
224
248
|
## 🤝 Contributing
|
225
249
|
|
226
|
-
We welcome contributions! Please see our [Contributing Guide](https://
|
250
|
+
We welcome contributions! Please see our [Contributing Guide](https://robutler.ai/webagents/developers/contributing/) for details.
|
227
251
|
|
228
252
|
## 📄 License
|
229
253
|
|
230
|
-
This project is licensed under the MIT License - see the [LICENSE](https://
|
254
|
+
This project is licensed under the MIT License - see the [LICENSE](https://robutler.ai/webagents/license/) file for details.
|
231
255
|
|
232
256
|
## 🆘 Support
|
233
257
|
|
234
258
|
- **GitHub Issues**: [Report bugs and request features](https://github.com/robutlerai/webagents/issues)
|
235
|
-
- **Documentation**: [
|
259
|
+
- **Documentation**: [robutler.ai/webagents](https://robutler.ai/webagents)
|
236
260
|
- **Community**: Join our Discord server for discussions and support
|
237
261
|
|
238
262
|
---
|
@@ -29,16 +29,27 @@ webagents/agents/skills/core/memory/vector_memory/skill.py,sha256=69dHAzIUgDL87P
|
|
29
29
|
webagents/agents/skills/core/planning/__init__.py,sha256=VjFRykXTRe9F0oHukmCFcbDuXg_bQU8XIcI8VEA69Y4,223
|
30
30
|
webagents/agents/skills/core/planning/planner.py,sha256=EFBH9vrYcYaWgXSlC0c8nUP9eGj6b_RyZ4dHbNjFVXU,13900
|
31
31
|
webagents/agents/skills/ecosystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
|
-
webagents/agents/skills/ecosystem/crewai/__init__.py,sha256=
|
33
|
-
webagents/agents/skills/ecosystem/
|
32
|
+
webagents/agents/skills/ecosystem/crewai/__init__.py,sha256=VJlcA5YqWtNgoPxQ_sq1V3ihrhMm4zA98RztxJX6BQY,57
|
33
|
+
webagents/agents/skills/ecosystem/crewai/skill.py,sha256=_aHrONwvfQnr84CTSWP1LT-Q-k5PleJUPJuuMlJgwKI,5877
|
34
|
+
webagents/agents/skills/ecosystem/database/__init__.py,sha256=MR8AXRwW_aTbbCl6g9auy7BC-X7u2En8JTpxf2WIpcA,61
|
35
|
+
webagents/agents/skills/ecosystem/database/skill.py,sha256=I3r7qvlbTO5YMMR-i-bHN3UblRlIguPuULFMEdhAiLw,23050
|
34
36
|
webagents/agents/skills/ecosystem/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
37
|
webagents/agents/skills/ecosystem/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
38
|
webagents/agents/skills/ecosystem/google/calendar/__init__.py,sha256=s_e6EPc07c-iO06BUYaVyat1arGkNBLt29BKHubL6-0,77
|
37
39
|
webagents/agents/skills/ecosystem/google/calendar/skill.py,sha256=hWFICppmWbHvecRLNz8NJJyT1GiQj_oR-ioxDDzQ_ig,15623
|
38
|
-
webagents/agents/skills/ecosystem/
|
40
|
+
webagents/agents/skills/ecosystem/mongodb/__init__.py,sha256=96R9LPw6CWC9gwUXMeAK64wvZN1F4ws7VTX3VJ12rBw,60
|
41
|
+
webagents/agents/skills/ecosystem/mongodb/skill.py,sha256=WNTP2vKjIxOdUIbuXd_5NKseBM1iCTLS_6t6t6hV40s,18603
|
42
|
+
webagents/agents/skills/ecosystem/n8n/README.md,sha256=huUSJsBCuMdljqKkie7l_skO-xeoFdAisP9jEZqn8eM,7402
|
43
|
+
webagents/agents/skills/ecosystem/n8n/__init__.py,sha256=IZaYCxmJ3oS8yhOlv7kADHzfo26EEO6BjMLFEkw09Yo,52
|
44
|
+
webagents/agents/skills/ecosystem/n8n/skill.py,sha256=p-D0DN2fYy76YGA7TzzUarAnf3Tzhv5W887aHU5h2j0,13759
|
39
45
|
webagents/agents/skills/ecosystem/openai_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
46
|
webagents/agents/skills/ecosystem/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
|
-
webagents/agents/skills/ecosystem/
|
47
|
+
webagents/agents/skills/ecosystem/x_com/README.md,sha256=XmM_c5A_L6Qj32DnQiKSYAy1QXXBjaSNmfkoyZ31mck,12601
|
48
|
+
webagents/agents/skills/ecosystem/x_com/__init__.py,sha256=dlSgfpSKryGldqcMg0H_RvsNnPCrBTVexIZtOPUiIw4,54
|
49
|
+
webagents/agents/skills/ecosystem/x_com/skill.py,sha256=ZxPfMP4CaCBql5B5W27qyTDSeB3dITvQ1aGgwQ3Libg,45427
|
50
|
+
webagents/agents/skills/ecosystem/zapier/README.md,sha256=9DDA79BIHm0qq2V3H1JbHmS_tZT6nLkuLY7Ta3FhMr0,8985
|
51
|
+
webagents/agents/skills/ecosystem/zapier/__init__.py,sha256=MSDixYLlCB8pNCCi56lw0SKz0M6H0k9kgscM8luo7nk,58
|
52
|
+
webagents/agents/skills/ecosystem/zapier/skill.py,sha256=Sh1L5rnFO3XZrISEj5-k-YDpCjo_Rvi2LozrqZLpPYc,13544
|
42
53
|
webagents/agents/skills/robutler/__init__.py,sha256=r3pYQje2t1T6ooLa45JXPgVOnTJPDvtrFV3i1i-fDTA,166
|
43
54
|
webagents/agents/skills/robutler/storage.py,sha256=qUTeGUYoW46TshYlLKTORoUIRT3fmzoatNE4gCGB6hU,14690
|
44
55
|
webagents/agents/skills/robutler/auth/README.md,sha256=mRcuGF3ty3WyoMCwR0pxYnOWNOKyM7h5MW67-9Y3V4M,2556
|
@@ -87,8 +98,8 @@ webagents/server/endpoints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
87
98
|
webagents/server/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
99
|
webagents/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
100
|
webagents/utils/logging.py,sha256=SOfNh9FDjrqFI8SoTBe-Hqp7nzagyQU9LDWGZt9GpQ8,14079
|
90
|
-
webagents-0.2.
|
91
|
-
webagents-0.2.
|
92
|
-
webagents-0.2.
|
93
|
-
webagents-0.2.
|
94
|
-
webagents-0.2.
|
101
|
+
webagents-0.2.2.dist-info/METADATA,sha256=mfPtnwrYg6RfKkINvTGTp5PYkxSiPClKcAcqHQwgmA8,10485
|
102
|
+
webagents-0.2.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
103
|
+
webagents-0.2.2.dist-info/entry_points.txt,sha256=bITAYBK8-H8EQUrDctEeEKuer4jAp3lfxKfvH5TT1eM,54
|
104
|
+
webagents-0.2.2.dist-info/licenses/LICENSE,sha256=q_-MstZzVvShVsmUTYc9G-PWmUM2j28kHhPrRCxu92w,1064
|
105
|
+
webagents-0.2.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|