webagents 0.1.13__py3-none-any.whl → 0.2.0__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/__init__.py +1 -1
- webagents/__main__.py +55 -0
- webagents/agents/__init__.py +1 -1
- webagents/agents/core/__init__.py +1 -1
- webagents/agents/core/base_agent.py +15 -15
- webagents/agents/core/handoffs.py +1 -1
- webagents/agents/skills/__init__.py +11 -11
- webagents/agents/skills/base.py +1 -1
- webagents/agents/skills/core/llm/litellm/__init__.py +1 -1
- webagents/agents/skills/core/llm/litellm/skill.py +1 -1
- webagents/agents/skills/core/mcp/README.md +2 -2
- webagents/agents/skills/core/mcp/skill.py +2 -2
- webagents/agents/skills/core/memory/long_term_memory/memory_skill.py +14 -14
- webagents/agents/skills/core/memory/short_term_memory/__init__.py +1 -1
- webagents/agents/skills/core/memory/short_term_memory/skill.py +1 -1
- webagents/agents/skills/core/memory/vector_memory/skill.py +6 -6
- webagents/agents/skills/core/planning/__init__.py +1 -1
- webagents/agents/skills/ecosystem/google/calendar/skill.py +1 -1
- webagents/agents/skills/robutler/__init__.py +2 -2
- webagents/agents/skills/robutler/auth/__init__.py +3 -3
- webagents/agents/skills/robutler/auth/skill.py +16 -16
- webagents/agents/skills/robutler/crm/__init__.py +2 -2
- webagents/agents/skills/robutler/crm/skill.py +5 -5
- webagents/agents/skills/robutler/discovery/README.md +5 -5
- webagents/agents/skills/robutler/discovery/__init__.py +2 -2
- webagents/agents/skills/robutler/discovery/skill.py +21 -21
- webagents/agents/skills/robutler/message_history/__init__.py +2 -2
- webagents/agents/skills/robutler/message_history/skill.py +5 -5
- webagents/agents/skills/robutler/nli/__init__.py +1 -1
- webagents/agents/skills/robutler/nli/skill.py +9 -9
- webagents/agents/skills/robutler/payments/__init__.py +3 -3
- webagents/agents/skills/robutler/payments/exceptions.py +1 -1
- webagents/agents/skills/robutler/payments/skill.py +23 -23
- webagents/agents/skills/robutler/storage/__init__.py +2 -2
- webagents/agents/skills/robutler/storage/files/__init__.py +2 -2
- webagents/agents/skills/robutler/storage/files/skill.py +4 -4
- webagents/agents/skills/robutler/storage/json/__init__.py +1 -1
- webagents/agents/skills/robutler/storage/json/skill.py +3 -3
- webagents/agents/skills/robutler/storage/kv/skill.py +3 -3
- webagents/agents/skills/robutler/storage.py +6 -6
- webagents/agents/tools/decorators.py +12 -12
- webagents/server/__init__.py +3 -3
- webagents/server/context/context_vars.py +2 -2
- webagents/server/core/app.py +13 -13
- webagents/server/core/middleware.py +3 -3
- webagents/server/core/models.py +1 -1
- webagents/server/core/monitoring.py +2 -2
- webagents/server/middleware.py +1 -1
- webagents/server/models.py +2 -2
- webagents/server/monitoring.py +15 -15
- webagents/utils/logging.py +20 -20
- webagents-0.2.0.dist-info/METADATA +242 -0
- webagents-0.2.0.dist-info/RECORD +94 -0
- webagents-0.2.0.dist-info/licenses/LICENSE +20 -0
- webagents/api/__init__.py +0 -17
- webagents/api/client.py +0 -1207
- webagents/api/types.py +0 -253
- webagents-0.1.13.dist-info/METADATA +0 -32
- webagents-0.1.13.dist-info/RECORD +0 -96
- webagents-0.1.13.dist-info/licenses/LICENSE +0 -1
- {webagents-0.1.13.dist-info → webagents-0.2.0.dist-info}/WHEEL +0 -0
- {webagents-0.1.13.dist-info → webagents-0.2.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,242 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: webagents
|
3
|
+
Version: 0.2.0
|
4
|
+
Summary: Foundation framework for the Web of Agents - build, serve and monetize AI agents
|
5
|
+
Author: Awesome Opensource Contributors and Robutler Team
|
6
|
+
License: MIT License
|
7
|
+
|
8
|
+
Copyright (c) 2025 Robutler
|
9
|
+
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
12
|
+
in the Software without restriction, including without limitation the rights
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
15
|
+
furnished to do so, subject to the following conditions:
|
16
|
+
|
17
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
18
|
+
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
21
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
22
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
23
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
24
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25
|
+
SOFTWARE.
|
26
|
+
License-File: LICENSE
|
27
|
+
Requires-Python: >=3.10
|
28
|
+
Requires-Dist: colorama>=0.4.6
|
29
|
+
Requires-Dist: fastapi>=0.100.0
|
30
|
+
Requires-Dist: fastmcp>=2.3.0
|
31
|
+
Requires-Dist: httpx>=0.24.0
|
32
|
+
Requires-Dist: litellm>=1.0.0
|
33
|
+
Requires-Dist: pillow>=10.0.0
|
34
|
+
Requires-Dist: pydantic-settings>=2.0.0
|
35
|
+
Requires-Dist: pydantic>=2.7.0
|
36
|
+
Requires-Dist: python-dotenv>=1.0.0
|
37
|
+
Requires-Dist: tiktoken>=0.5.0
|
38
|
+
Requires-Dist: uvicorn>=0.23.0
|
39
|
+
Provides-Extra: dev
|
40
|
+
Requires-Dist: black>=23.0.0; extra == 'dev'
|
41
|
+
Requires-Dist: mypy>=1.0.0; extra == 'dev'
|
42
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
|
43
|
+
Requires-Dist: pytest>=7.0.0; extra == 'dev'
|
44
|
+
Requires-Dist: ruff>=0.0.270; extra == 'dev'
|
45
|
+
Provides-Extra: examples
|
46
|
+
Requires-Dist: openai-agents>=0.0.16; extra == 'examples'
|
47
|
+
Description-Content-Type: text/markdown
|
48
|
+
|
49
|
+
# WebAgents - core framework for the Web of Agents
|
50
|
+
|
51
|
+
**Build, Serve and Monetize AI Agents**
|
52
|
+
|
53
|
+
WebAgents is a powerful opensource framework for building connected AI agents with a simple yet comprehensive API. Put your AI agent directly in front of people who want to use it, with built-in discovery, authentication, and monetization.
|
54
|
+
|
55
|
+
[](https://badge.fury.io/py/webagents)
|
56
|
+
[](https://www.python.org/downloads/)
|
57
|
+
[](LICENSE)
|
58
|
+
|
59
|
+
## 🚀 Key Features
|
60
|
+
|
61
|
+
- **🧩 Modular Skills System** - Combine tools, prompts, hooks, and HTTP endpoints into reusable packages
|
62
|
+
- **🤝 Agent-to-Agent Delegation** - Delegate tasks to other agents via natural language. Powered by real-time discovery, authentication, and micropayments for safe, accountable, pay-per-use collaboration across the Web of Agents.
|
63
|
+
- **🔍 Real-Time Discovery** - Agents discover each other through intent matching - no manual integration
|
64
|
+
- **💰 Built-in Monetization** - Earn credits from priced tools with automatic billing
|
65
|
+
- **🔐 Trust & Security** - Secure authentication and scope-based access control
|
66
|
+
- **🌐 Protocol agnostic connectivity** - Deploy agents as standard chat completion endpoints with coming support for OpenAI Responses/Realtime, ACP, A2A and other common AI communication protocols and frameworks.
|
67
|
+
- **🔌 Build or Integrate** - Build from scratch with WebAgents, or integrate existing agents from popular SDKs and platforms into the Web of Agents (e.g., Azure AI Foundry, Google Vertex AI, CrewAI, n8n, Zapier).
|
68
|
+
|
69
|
+
With WebAgents delegation, your agent is as powerful as the whole ecosystem, and capabilities of your agent grow together with the whole ecosystem.
|
70
|
+
|
71
|
+
## 📦 Installation
|
72
|
+
|
73
|
+
```bash
|
74
|
+
pip install webagents
|
75
|
+
```
|
76
|
+
|
77
|
+
## 🏃♂️ Quick Start
|
78
|
+
|
79
|
+
### Create Your First Agent
|
80
|
+
|
81
|
+
```python
|
82
|
+
from webagents.agents.core.base_agent import BaseAgent
|
83
|
+
|
84
|
+
# Create a basic agent
|
85
|
+
agent = BaseAgent(
|
86
|
+
name="assistant",
|
87
|
+
instructions="You are a helpful AI assistant.",
|
88
|
+
model="openai/gpt-4o-mini" # Automatically creates LLM skill
|
89
|
+
)
|
90
|
+
|
91
|
+
# Run chat completion
|
92
|
+
messages = [{"role": "user", "content": "Hello! What can you help me with?"}]
|
93
|
+
response = await agent.run(messages=messages)
|
94
|
+
print(response.content)
|
95
|
+
```
|
96
|
+
|
97
|
+
### Serve Your Agent
|
98
|
+
|
99
|
+
Deploy your agent as an OpenAI-compatible API server:
|
100
|
+
|
101
|
+
```python
|
102
|
+
from webagents.server.core.app import create_server
|
103
|
+
import uvicorn
|
104
|
+
|
105
|
+
# Create server with your agent
|
106
|
+
server = create_server(agents=[agent])
|
107
|
+
|
108
|
+
# Run the server
|
109
|
+
uvicorn.run(server.app, host="0.0.0.0", port=8000)
|
110
|
+
```
|
111
|
+
|
112
|
+
Test your agent API:
|
113
|
+
```bash
|
114
|
+
curl -X POST http://localhost:8000/assistant/chat/completions \
|
115
|
+
-H "Content-Type: application/json" \
|
116
|
+
-d '{"messages": [{"role": "user", "content": "Hello!"}]}'
|
117
|
+
```
|
118
|
+
|
119
|
+
## 🧩 Skills Framework
|
120
|
+
|
121
|
+
Skills combine tools, prompts, hooks, and HTTP endpoints into easy-to-integrate packages:
|
122
|
+
|
123
|
+
```python
|
124
|
+
from webagents.agents.skills.base import Skill
|
125
|
+
from webagents.agents.tools.decorators import tool, prompt, hook, http
|
126
|
+
from webagents.agents.skills.robutler.payments.skill import pricing
|
127
|
+
|
128
|
+
class NotificationsSkill(Skill):
|
129
|
+
@prompt(scope=["owner"])
|
130
|
+
def get_prompt(self) -> str:
|
131
|
+
return "You can send notifications using send_notification()."
|
132
|
+
|
133
|
+
@tool(scope="owner")
|
134
|
+
@pricing(credits_per_call=0.01)
|
135
|
+
async def send_notification(self, title: str, body: str) -> str:
|
136
|
+
# Your API integration
|
137
|
+
return f"✅ Notification sent: {title}"
|
138
|
+
|
139
|
+
@hook("on_message")
|
140
|
+
async def log_messages(self, context):
|
141
|
+
# React to incoming messages
|
142
|
+
return context
|
143
|
+
|
144
|
+
@http("POST", "/webhook")
|
145
|
+
async def handle_webhook(self, request):
|
146
|
+
# Custom HTTP endpoint
|
147
|
+
return {"status": "received"}
|
148
|
+
```
|
149
|
+
|
150
|
+
**Core Skills** - Essential functionality:
|
151
|
+
- **LLM Skills**: OpenAI, Anthropic, LiteLLM integration
|
152
|
+
- **Memory Skills**: Short-term, long-term, and vector memory
|
153
|
+
- **MCP Skill**: Model Context Protocol integration
|
154
|
+
|
155
|
+
**Platform Skills** - WebAgents ecosystem:
|
156
|
+
- **Discovery**: Real-time agent discovery and routing
|
157
|
+
- **Authentication**: Secure agent-to-agent communication
|
158
|
+
- **Payments**: Monetization and automatic billing
|
159
|
+
- **Storage**: Persistent data and messaging
|
160
|
+
|
161
|
+
**Ecosystem Skills** - External integrations:
|
162
|
+
- **Google**: Calendar, Drive, Gmail integration
|
163
|
+
- **Database**: SQL and NoSQL database access
|
164
|
+
- **Workflow**: CrewAI, N8N, Zapier automation
|
165
|
+
|
166
|
+
## 💰 Monetization
|
167
|
+
|
168
|
+
Add payments to earn credits from your agent:
|
169
|
+
|
170
|
+
```python
|
171
|
+
from webagents.agents.core.base_agent import BaseAgent
|
172
|
+
from webagents.agents.skills.robutler.payments.skill import PaymentSkill, pricing
|
173
|
+
from webagents.agents.tools.decorators import tool
|
174
|
+
|
175
|
+
# Define a priced tool (fixed pricing)
|
176
|
+
@tool
|
177
|
+
@pricing(credits_per_call=0.01, reason="Image generation")
|
178
|
+
def generate_thumbnail(url: str, size: int = 256) -> dict:
|
179
|
+
"""Create a thumbnail for a public image URL."""
|
180
|
+
# ... your processing logic here ...
|
181
|
+
return {"url": url, "thumbnail_size": size, "status": "created"}
|
182
|
+
|
183
|
+
|
184
|
+
agent = BaseAgent(
|
185
|
+
name="thumbnail-generator",
|
186
|
+
model="openai/gpt-4o-mini",
|
187
|
+
skills={
|
188
|
+
"payments": PaymentSkill(),
|
189
|
+
},
|
190
|
+
# Auto-register priced tool as capability
|
191
|
+
capabilities=[generate_thumbnail],
|
192
|
+
)
|
193
|
+
```
|
194
|
+
|
195
|
+
## 🔧 Environment Setup
|
196
|
+
|
197
|
+
Set up your API keys for LLM providers:
|
198
|
+
|
199
|
+
```bash
|
200
|
+
export OPENAI_API_KEY="your-openai-key"
|
201
|
+
|
202
|
+
# Robutler API key for payments
|
203
|
+
export WEBAGENTS_API_KEY="your-webagents-key"
|
204
|
+
```
|
205
|
+
|
206
|
+
Get your WEBAGENTS_API_KEY at https://robutler.ai
|
207
|
+
|
208
|
+
|
209
|
+
## 🌐 Web of Agents
|
210
|
+
|
211
|
+
WebAgents enables dynamic real-time orchestration where each AI agent acts as a building block for other agents:
|
212
|
+
|
213
|
+
- **🚀 Real-Time Discovery**: Think DNS for agent intents - agents find each other through natural language
|
214
|
+
- **🔐 Trust & Security**: Secure authentication with audit trails for all transactions
|
215
|
+
- **💡 Delegation by Design**: Seamless delegation across agents, enabled by real-time discovery, scoped authentication, and micropayments. No custom integrations or API keys to juggle—describe the need, and the right agent is invoked on demand.
|
216
|
+
|
217
|
+
## 📚 Documentation
|
218
|
+
|
219
|
+
- **[Full Documentation](https://webagents.robutler.ai)** - Complete guides and API reference
|
220
|
+
- **[Skills Framework](https://webagents.robutler.ai/skills/overview/)** - Deep dive into modular capabilities
|
221
|
+
- **[Agent Architecture](https://webagents.robutler.ai/agent/overview/)** - Understand agent communication
|
222
|
+
- **[Custom Skills](https://webagents.robutler.ai/skills/custom/)** - Build your own capabilities
|
223
|
+
|
224
|
+
## 🤝 Contributing
|
225
|
+
|
226
|
+
We welcome contributions! Please see our [Contributing Guide](https://webagents.robutler.ai/developers/contributing/) for details.
|
227
|
+
|
228
|
+
## 📄 License
|
229
|
+
|
230
|
+
This project is licensed under the MIT License - see the [LICENSE](https://webagents.robutler.ai/license/) file for details.
|
231
|
+
|
232
|
+
## 🆘 Support
|
233
|
+
|
234
|
+
- **GitHub Issues**: [Report bugs and request features](https://github.com/robutlerai/webagents/issues)
|
235
|
+
- **Documentation**: [webagents.robutler.ai](https://webagents.robutler.ai)
|
236
|
+
- **Community**: Join our Discord server for discussions and support
|
237
|
+
|
238
|
+
---
|
239
|
+
|
240
|
+
**Focus on what makes your agent unique instead of spending time on plumbing.**
|
241
|
+
|
242
|
+
Built with ❤️ by the [WebAgents team](https://robutler.ai) and community contributors.
|
@@ -0,0 +1,94 @@
|
|
1
|
+
webagents/__init__.py,sha256=N4dAwBpmq88YlPYFlBM2yQ0V_B7_uLxzhLzwGDb6Dew,374
|
2
|
+
webagents/__main__.py,sha256=5e1gYVYHzbADPIMYsoZRyBg-gRtdvFi8ykBsZYXFrqU,1346
|
3
|
+
webagents/agents/__init__.py,sha256=xh0Q3JyTN71ByorxVz_o_4lSrmVicA6LxNsuA7aF7W8,245
|
4
|
+
webagents/agents/core/__init__.py,sha256=WL5kMK1NuAWfKLTJQ0le68k4tRTOrOcf485bKRHBPiw,542
|
5
|
+
webagents/agents/core/base_agent.py,sha256=0DgHqdey-tqmv0JTHMzICBdzVuensUQkMSL23sx0Gog,93823
|
6
|
+
webagents/agents/core/handoffs.py,sha256=vfojIHoy_IKHU5sxs2PY8hZFyBLlYdlujQFXnqzvK9c,11076
|
7
|
+
webagents/agents/handoffs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
+
webagents/agents/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
+
webagents/agents/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
+
webagents/agents/skills/__init__.py,sha256=qGawdVNp1AtF09-vAVR2s77SwQCTnZIaIGskDv5e81g,3211
|
11
|
+
webagents/agents/skills/base.py,sha256=s_wdhmqDGVCSXJiahwuUdKWeXIpdPfe_e8NL67oKbsc,5099
|
12
|
+
webagents/agents/skills/core/__init__.py,sha256=xT_-sPnLbxTUqjvg0toVCqQyB6OP-An_vBprdv_t0xA,258
|
13
|
+
webagents/agents/skills/core/guardrails/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
+
webagents/agents/skills/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
+
webagents/agents/skills/core/llm/anthropic/__init__.py,sha256=NkitGyW7aAdDPKsIeZaU979us3yg84Hej1L_Ogtw-f8,68
|
16
|
+
webagents/agents/skills/core/llm/litellm/__init__.py,sha256=DaUZozXF_x7LWfH_Blrn7rpF7Y7k91VRnRKoh_2JbqI,272
|
17
|
+
webagents/agents/skills/core/llm/litellm/skill.py,sha256=tNQ61DmvpmfwB6fU0cJlzb0OicV6jB1wPJHUdiU80zc,22267
|
18
|
+
webagents/agents/skills/core/llm/openai/__init__.py,sha256=eHvy20Z-geoVAZu8MstRiPXsEXZLJcBq3GtSZSLeOXo,65
|
19
|
+
webagents/agents/skills/core/llm/xai/__init__.py,sha256=HPcn0Ki-Di0kIzV5bvb-Vt-8vGW-ufBmHI9ZBeIdlA8,62
|
20
|
+
webagents/agents/skills/core/mcp/README.md,sha256=niQJlntyF6WbaxsUuJVYHFYJ93nV6u4F_QQ_TJZIAP8,14950
|
21
|
+
webagents/agents/skills/core/mcp/__init__.py,sha256=0dBqPqObN8kREXP28fX-ANxxyf6NFol_n95TgxTYkjU,366
|
22
|
+
webagents/agents/skills/core/mcp/skill.py,sha256=CrsamhExnEwDJRlHT57PItTWSajWqM-uGLhJxoE_zqU,30254
|
23
|
+
webagents/agents/skills/core/memory/__init__.py,sha256=EH3YM_WQ9GZcgJnbxfB5UaKZj6VU3a9k8pD-GcLnExI,328
|
24
|
+
webagents/agents/skills/core/memory/long_term_memory/__init__.py,sha256=Bk4DChm7NDLizK0yS-NBWTA7FWSc_SSVYI80F_BJ6MU,258
|
25
|
+
webagents/agents/skills/core/memory/long_term_memory/memory_skill.py,sha256=Swc2eQUKRheH88J-AVoP7zj8pqMxYrXtSsAbILBHVdM,24069
|
26
|
+
webagents/agents/skills/core/memory/short_term_memory/__init__.py,sha256=TH5ijPbZau6oUTjgj5R1YqSw5x_kqWJhzJlaoGVeymc,217
|
27
|
+
webagents/agents/skills/core/memory/short_term_memory/skill.py,sha256=rif35KGClq6tC_Tf5Y0GDND_jEyGZc9GVtm8Mhugyog,12791
|
28
|
+
webagents/agents/skills/core/memory/vector_memory/skill.py,sha256=69dHAzIUgDL87PXgsvmmF8Ijv_O5i_PzBwbLBzCoJNQ,20003
|
29
|
+
webagents/agents/skills/core/planning/__init__.py,sha256=VjFRykXTRe9F0oHukmCFcbDuXg_bQU8XIcI8VEA69Y4,223
|
30
|
+
webagents/agents/skills/core/planning/planner.py,sha256=EFBH9vrYcYaWgXSlC0c8nUP9eGj6b_RyZ4dHbNjFVXU,13900
|
31
|
+
webagents/agents/skills/ecosystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
|
+
webagents/agents/skills/ecosystem/crewai/__init__.py,sha256=MfHsOOPpXVUWcXyiip2_svHF8YxrJ60cH28TM8ef__Q,30
|
33
|
+
webagents/agents/skills/ecosystem/database/__init__.py,sha256=x2y6F1FCplEmLaUXKztNDtNg_o1Y61ttiH1EiSrqCJ0,32
|
34
|
+
webagents/agents/skills/ecosystem/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
+
webagents/agents/skills/ecosystem/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
|
+
webagents/agents/skills/ecosystem/google/calendar/__init__.py,sha256=s_e6EPc07c-iO06BUYaVyat1arGkNBLt29BKHubL6-0,77
|
37
|
+
webagents/agents/skills/ecosystem/google/calendar/skill.py,sha256=hWFICppmWbHvecRLNz8NJJyT1GiQj_oR-ioxDDzQ_ig,15623
|
38
|
+
webagents/agents/skills/ecosystem/n8n/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
|
+
webagents/agents/skills/ecosystem/openai_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
|
+
webagents/agents/skills/ecosystem/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
|
+
webagents/agents/skills/ecosystem/zapier/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
|
+
webagents/agents/skills/robutler/__init__.py,sha256=r3pYQje2t1T6ooLa45JXPgVOnTJPDvtrFV3i1i-fDTA,166
|
43
|
+
webagents/agents/skills/robutler/storage.py,sha256=qUTeGUYoW46TshYlLKTORoUIRT3fmzoatNE4gCGB6hU,14690
|
44
|
+
webagents/agents/skills/robutler/auth/README.md,sha256=mRcuGF3ty3WyoMCwR0pxYnOWNOKyM7h5MW67-9Y3V4M,2556
|
45
|
+
webagents/agents/skills/robutler/auth/__init__.py,sha256=OFcHOoGHoPrfRw4xJfbBPIooZ9GAwTbdHFXzhMH8ams,452
|
46
|
+
webagents/agents/skills/robutler/auth/skill.py,sha256=_LsWWmpiqZKWQ3G_KORAl-kjsw4GR4oYvhQ-TBWccWQ,14831
|
47
|
+
webagents/agents/skills/robutler/crm/__init__.py,sha256=rd43zSRWB14p-oj-Apj83PiwhIwXip1jWTikFdhcf-Y,337
|
48
|
+
webagents/agents/skills/robutler/crm/skill.py,sha256=bT1WjpY-vj1KO0zVhi7QbHMfhnhToqp2nClexUZpsdY,12954
|
49
|
+
webagents/agents/skills/robutler/discovery/README.md,sha256=3pvo2sJY-Rm29SWuIsHSpDwptaPPDXqjcb6HDGjxaSM,9193
|
50
|
+
webagents/agents/skills/robutler/discovery/__init__.py,sha256=VJYay8yjA1d42HVJDD1GjoZBZD5bEkQovy0jz3GZHbM,319
|
51
|
+
webagents/agents/skills/robutler/discovery/skill.py,sha256=g0tvFiVOSjJtZnPcZZHoWXdTxEESkx0EnSlq6eZbmJ4,9325
|
52
|
+
webagents/agents/skills/robutler/kv/__init__.py,sha256=sbaE6gr_OksCWIhJE0kFMpFErAHUnW_7coW8HiKePM8,53
|
53
|
+
webagents/agents/skills/robutler/kv/skill.py,sha256=ftZulx4gQD9lQVstCTj7ZjsWML2XcZ6PU-2lSGpePHU,3364
|
54
|
+
webagents/agents/skills/robutler/message_history/__init__.py,sha256=15EdlGC6jbcj5ba_kr9U93B1x4U_wG4VeWkY5WW36ZI,215
|
55
|
+
webagents/agents/skills/robutler/message_history/skill.py,sha256=Zq7xATjU-Rx2WbDg812d2S0xPLYlMeM_E9dwn7_NuJU,11179
|
56
|
+
webagents/agents/skills/robutler/messages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
57
|
+
webagents/agents/skills/robutler/nli/__init__.py,sha256=MrwX21Q5sRlaShckZ56Xt4Xi655wPOdBnJEPZ9ZLm3Q,310
|
58
|
+
webagents/agents/skills/robutler/nli/skill.py,sha256=Kufv3qqtiC--KfqK9UiJtv9PTELK-vJ_Is9foev8VSg,30607
|
59
|
+
webagents/agents/skills/robutler/notifications/__init__.py,sha256=N5ZWC0YkDRpKsIlazlVdYLBDMvhFg3s1ZIOzpi75EJg,74
|
60
|
+
webagents/agents/skills/robutler/notifications/skill.py,sha256=uJpAoCWh0XR475tPhETEePhu0RzvDSxz9cDH2SC7-qQ,5576
|
61
|
+
webagents/agents/skills/robutler/payments/__init__.py,sha256=cPe_qLG0nHRxfd5-stleNIFpGktH9_nvpIbjdDJTRCk,1112
|
62
|
+
webagents/agents/skills/robutler/payments/exceptions.py,sha256=92mP-sWdU3bgiPpqGsGN8Z0pWif7coBT5ifDhuEtgM0,9697
|
63
|
+
webagents/agents/skills/robutler/payments/skill.py,sha256=t3m1pysHBxGauA5xh9oPOGDxW4t8n3XsE2Pj2rL_1r8,27880
|
64
|
+
webagents/agents/skills/robutler/storage/__init__.py,sha256=A3FW8rqu5cMJatys-58Y9qyGFllN1t-XkBDOs_pzCHg,227
|
65
|
+
webagents/agents/skills/robutler/storage/files/__init__.py,sha256=fUM9VH98PQFgA9d32ok_cIGP4QnszLDm2cqWzXJkqGk,202
|
66
|
+
webagents/agents/skills/robutler/storage/files/skill.py,sha256=uDzD_MFobbd0vEgAsz8XMXqIEocG943BznP288St_WM,19305
|
67
|
+
webagents/agents/skills/robutler/storage/json/__init__.py,sha256=Sg6k7ZY032a5SnWUPsW9t2TnK4WFtWsU8TjI3VDLNQo,189
|
68
|
+
webagents/agents/skills/robutler/storage/json/skill.py,sha256=2Z-pQn8n9UMO-l4vojPY9DsNyEAA3PwMA0SBQfFdfps,12425
|
69
|
+
webagents/agents/skills/robutler/storage/kv/skill.py,sha256=iBNnRdsGQpCxFjMiA7sMwMynm9vYk6_2tZGsZnIuUcE,3348
|
70
|
+
webagents/agents/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
|
+
webagents/agents/tools/decorators.py,sha256=CjVqPPQif7jrAm8MWvvcSYfNA4hSeb0BpzJXL-ush-c,17163
|
72
|
+
webagents/agents/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
|
+
webagents/agents/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
74
|
+
webagents/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
75
|
+
webagents/server/__init__.py,sha256=GGDg1QqMjG0vLElBS1GggsWIyVe-wtMNyUi5FnNXTUI,609
|
76
|
+
webagents/server/middleware.py,sha256=kbneMSTKcdn9rlawMM0r3ngo6MAOG_iKXXRrpj7drbM,12068
|
77
|
+
webagents/server/models.py,sha256=Q7MsOa2aaZuwgrJZ2rXJ3p8Byv021DuKQ53AEw5twT4,4802
|
78
|
+
webagents/server/monitoring.py,sha256=IA98D_mFellWSA94ytgnMKOUEUSEOoXmSHD9mUB87z4,20461
|
79
|
+
webagents/server/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
80
|
+
webagents/server/context/context_vars.py,sha256=grtkAFK_rI9rWcxIpFoLwhOKfIgisfMr29_cGK7Zowo,3615
|
81
|
+
webagents/server/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
|
+
webagents/server/core/app.py,sha256=TuXAAYosbcTlTNUOA5wBo3dPCT02v9mHkFJJST5Qq9Q,38468
|
83
|
+
webagents/server/core/middleware.py,sha256=t3sBbLdjhtLx-MJiNRfmCS0Os63ghCpBsgeVH70KfnA,2228
|
84
|
+
webagents/server/core/models.py,sha256=kVIil3ocUvqmUOF-tH0P_GySrFciV2buFXQpprkQz8k,4675
|
85
|
+
webagents/server/core/monitoring.py,sha256=aYIj-Pv_5-KWlSOMfQR3nnaROGE04W9tZ1osQhf9sAA,1525
|
86
|
+
webagents/server/endpoints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
|
+
webagents/server/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
|
+
webagents/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
|
+
webagents/utils/logging.py,sha256=SOfNh9FDjrqFI8SoTBe-Hqp7nzagyQU9LDWGZt9GpQ8,14079
|
90
|
+
webagents-0.2.0.dist-info/METADATA,sha256=7sN7WXn3o48de6aHlYPi22N9UdT3OyoqxnZ_nA3rWoE,9563
|
91
|
+
webagents-0.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
92
|
+
webagents-0.2.0.dist-info/entry_points.txt,sha256=bITAYBK8-H8EQUrDctEeEKuer4jAp3lfxKfvH5TT1eM,54
|
93
|
+
webagents-0.2.0.dist-info/licenses/LICENSE,sha256=q_-MstZzVvShVsmUTYc9G-PWmUM2j28kHhPrRCxu92w,1064
|
94
|
+
webagents-0.2.0.dist-info/RECORD,,
|
@@ -0,0 +1,20 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2025 Robutler
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
20
|
+
SOFTWARE.
|
webagents/api/__init__.py
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
"""
|
2
|
-
Robutler API Client Package - Robutler V2.0
|
3
|
-
|
4
|
-
Client library for integrating with Robutler Platform services.
|
5
|
-
Provides authentication, user management, payment, and other platform APIs.
|
6
|
-
"""
|
7
|
-
|
8
|
-
from .client import RobutlerClient
|
9
|
-
from .types import User, ApiKey, Integration, CreditTransaction
|
10
|
-
|
11
|
-
__all__ = [
|
12
|
-
"RobutlerClient",
|
13
|
-
"User",
|
14
|
-
"ApiKey",
|
15
|
-
"Integration",
|
16
|
-
"CreditTransaction"
|
17
|
-
]
|