webagents 0.1.12__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.12.dist-info/METADATA +0 -99
- webagents-0.1.12.dist-info/RECORD +0 -96
- webagents-0.1.12.dist-info/licenses/LICENSE +0 -1
- {webagents-0.1.12.dist-info → webagents-0.2.0.dist-info}/WHEEL +0 -0
- {webagents-0.1.12.dist-info → webagents-0.2.0.dist-info}/entry_points.txt +0 -0
webagents/api/types.py
DELETED
@@ -1,253 +0,0 @@
|
|
1
|
-
"""
|
2
|
-
Robutler API Types - Robutler V2.0
|
3
|
-
|
4
|
-
Data types and models for Robutler Platform API integration.
|
5
|
-
Based on the Robutler Portal database schema.
|
6
|
-
"""
|
7
|
-
|
8
|
-
from dataclasses import dataclass
|
9
|
-
from datetime import datetime
|
10
|
-
from typing import Dict, Any, List, Optional
|
11
|
-
from decimal import Decimal
|
12
|
-
from enum import Enum
|
13
|
-
|
14
|
-
|
15
|
-
class UserRole(Enum):
|
16
|
-
"""User role enumeration"""
|
17
|
-
USER = "user"
|
18
|
-
ADMIN = "admin"
|
19
|
-
|
20
|
-
|
21
|
-
class SubscriptionStatus(Enum):
|
22
|
-
"""Subscription status enumeration"""
|
23
|
-
ACTIVE = "active"
|
24
|
-
INACTIVE = "inactive"
|
25
|
-
CANCELED = "canceled"
|
26
|
-
TRIALING = "trialing"
|
27
|
-
PAST_DUE = "past_due"
|
28
|
-
|
29
|
-
|
30
|
-
class IntegrationType(Enum):
|
31
|
-
"""Integration type enumeration"""
|
32
|
-
AGENT = "agent"
|
33
|
-
MCP = "mcp"
|
34
|
-
API = "api"
|
35
|
-
|
36
|
-
|
37
|
-
class IntegrationProtocol(Enum):
|
38
|
-
"""Integration protocol enumeration"""
|
39
|
-
MCP = "mcp"
|
40
|
-
A2A = "a2a"
|
41
|
-
P2PMCP = "p2pmcp"
|
42
|
-
HTTP = "http"
|
43
|
-
|
44
|
-
|
45
|
-
class TransactionType(Enum):
|
46
|
-
"""Credit transaction type enumeration"""
|
47
|
-
ADDITION = "addition"
|
48
|
-
USAGE = "usage"
|
49
|
-
TRANSFER = "transfer"
|
50
|
-
|
51
|
-
|
52
|
-
@dataclass
|
53
|
-
class User:
|
54
|
-
"""Robutler platform user"""
|
55
|
-
id: str
|
56
|
-
name: Optional[str] = None
|
57
|
-
email: str = ""
|
58
|
-
role: UserRole = UserRole.USER
|
59
|
-
google_id: Optional[str] = None
|
60
|
-
avatar_url: Optional[str] = None
|
61
|
-
created_at: Optional[datetime] = None
|
62
|
-
updated_at: Optional[datetime] = None
|
63
|
-
# Stripe/Payment fields
|
64
|
-
stripe_customer_id: Optional[str] = None
|
65
|
-
stripe_subscription_id: Optional[str] = None
|
66
|
-
stripe_product_id: Optional[str] = None
|
67
|
-
plan_name: Optional[str] = None
|
68
|
-
subscription_status: Optional[SubscriptionStatus] = None
|
69
|
-
# Credits
|
70
|
-
total_credits: Decimal = Decimal('0')
|
71
|
-
used_credits: Decimal = Decimal('0')
|
72
|
-
# Referrals
|
73
|
-
referral_code: Optional[str] = None
|
74
|
-
referred_by: Optional[str] = None
|
75
|
-
referral_count: int = 0
|
76
|
-
|
77
|
-
@property
|
78
|
-
def available_credits(self) -> Decimal:
|
79
|
-
"""Calculate available credits"""
|
80
|
-
return self.total_credits - self.used_credits
|
81
|
-
|
82
|
-
@property
|
83
|
-
def is_admin(self) -> bool:
|
84
|
-
"""Check if user is admin"""
|
85
|
-
return self.role == UserRole.ADMIN
|
86
|
-
|
87
|
-
def to_dict(self) -> Dict[str, Any]:
|
88
|
-
"""Convert to dictionary"""
|
89
|
-
return {
|
90
|
-
'id': self.id,
|
91
|
-
'name': self.name,
|
92
|
-
'email': self.email,
|
93
|
-
'role': self.role.value,
|
94
|
-
'avatar_url': self.avatar_url,
|
95
|
-
'total_credits': str(self.total_credits),
|
96
|
-
'used_credits': str(self.used_credits),
|
97
|
-
'available_credits': str(self.available_credits),
|
98
|
-
'subscription_status': self.subscription_status.value if self.subscription_status else None,
|
99
|
-
'plan_name': self.plan_name,
|
100
|
-
'referral_code': self.referral_code,
|
101
|
-
'is_admin': self.is_admin
|
102
|
-
}
|
103
|
-
|
104
|
-
|
105
|
-
@dataclass
|
106
|
-
class ApiKey:
|
107
|
-
"""Robutler platform API key"""
|
108
|
-
id: str
|
109
|
-
user_id: str
|
110
|
-
name: str
|
111
|
-
key_hash: str
|
112
|
-
last_used: Optional[datetime] = None
|
113
|
-
expires_at: Optional[datetime] = None
|
114
|
-
is_active: bool = True
|
115
|
-
daily_rate_limit: Optional[int] = None
|
116
|
-
daily_credit_limit: Optional[Decimal] = None
|
117
|
-
session_credit_limit: Optional[Decimal] = None
|
118
|
-
spent_credits: Decimal = Decimal('0')
|
119
|
-
earned_credits: Decimal = Decimal('0')
|
120
|
-
permissions: Optional[Dict[str, Any]] = None
|
121
|
-
integration_id: Optional[str] = None
|
122
|
-
created_at: Optional[datetime] = None
|
123
|
-
updated_at: Optional[datetime] = None
|
124
|
-
|
125
|
-
@property
|
126
|
-
def is_expired(self) -> bool:
|
127
|
-
"""Check if API key is expired"""
|
128
|
-
if not self.expires_at:
|
129
|
-
return False
|
130
|
-
return datetime.utcnow() > self.expires_at
|
131
|
-
|
132
|
-
@property
|
133
|
-
def is_valid(self) -> bool:
|
134
|
-
"""Check if API key is valid"""
|
135
|
-
return self.is_active and not self.is_expired
|
136
|
-
|
137
|
-
def to_dict(self) -> Dict[str, Any]:
|
138
|
-
"""Convert to dictionary"""
|
139
|
-
return {
|
140
|
-
'id': self.id,
|
141
|
-
'user_id': self.user_id,
|
142
|
-
'name': self.name,
|
143
|
-
'is_active': self.is_active,
|
144
|
-
'is_expired': self.is_expired,
|
145
|
-
'is_valid': self.is_valid,
|
146
|
-
'expires_at': self.expires_at.isoformat() if self.expires_at else None,
|
147
|
-
'last_used': self.last_used.isoformat() if self.last_used else None,
|
148
|
-
'daily_credit_limit': str(self.daily_credit_limit) if self.daily_credit_limit else None,
|
149
|
-
'session_credit_limit': str(self.session_credit_limit) if self.session_credit_limit else None,
|
150
|
-
'spent_credits': str(self.spent_credits),
|
151
|
-
'permissions': self.permissions
|
152
|
-
}
|
153
|
-
|
154
|
-
|
155
|
-
@dataclass
|
156
|
-
class Integration:
|
157
|
-
"""Robutler platform integration"""
|
158
|
-
id: str
|
159
|
-
user_id: str
|
160
|
-
agent_id: Optional[str] = None
|
161
|
-
name: Optional[str] = None
|
162
|
-
type: IntegrationType = IntegrationType.API
|
163
|
-
protocol: IntegrationProtocol = IntegrationProtocol.HTTP
|
164
|
-
secret: Optional[str] = None
|
165
|
-
api_key_id: Optional[str] = None
|
166
|
-
created_at: Optional[datetime] = None
|
167
|
-
updated_at: Optional[datetime] = None
|
168
|
-
|
169
|
-
def to_dict(self) -> Dict[str, Any]:
|
170
|
-
"""Convert to dictionary"""
|
171
|
-
return {
|
172
|
-
'id': self.id,
|
173
|
-
'user_id': self.user_id,
|
174
|
-
'agent_id': self.agent_id,
|
175
|
-
'name': self.name,
|
176
|
-
'type': self.type.value,
|
177
|
-
'protocol': self.protocol.value,
|
178
|
-
'api_key_id': self.api_key_id,
|
179
|
-
'created_at': self.created_at.isoformat() if self.created_at else None
|
180
|
-
}
|
181
|
-
|
182
|
-
|
183
|
-
@dataclass
|
184
|
-
class CreditTransaction:
|
185
|
-
"""Robutler platform credit transaction"""
|
186
|
-
id: str
|
187
|
-
user_id: str
|
188
|
-
integration_id: Optional[str] = None
|
189
|
-
api_key_id: Optional[str] = None
|
190
|
-
recipient_id: Optional[str] = None
|
191
|
-
amount: Decimal = Decimal('0')
|
192
|
-
type: TransactionType = TransactionType.USAGE
|
193
|
-
source: str = "api_usage"
|
194
|
-
description: Optional[str] = None
|
195
|
-
receipt: Optional[str] = None
|
196
|
-
created_at: Optional[datetime] = None
|
197
|
-
|
198
|
-
def to_dict(self) -> Dict[str, Any]:
|
199
|
-
"""Convert to dictionary"""
|
200
|
-
return {
|
201
|
-
'id': self.id,
|
202
|
-
'user_id': self.user_id,
|
203
|
-
'integration_id': self.integration_id,
|
204
|
-
'api_key_id': self.api_key_id,
|
205
|
-
'amount': str(self.amount),
|
206
|
-
'type': self.type.value,
|
207
|
-
'source': self.source,
|
208
|
-
'description': self.description,
|
209
|
-
'created_at': self.created_at.isoformat() if self.created_at else None
|
210
|
-
}
|
211
|
-
|
212
|
-
|
213
|
-
@dataclass
|
214
|
-
class AuthResponse:
|
215
|
-
"""Authentication response from Robutler API"""
|
216
|
-
success: bool
|
217
|
-
user: Optional[User] = None
|
218
|
-
api_key: Optional[ApiKey] = None
|
219
|
-
error: Optional[str] = None
|
220
|
-
message: Optional[str] = None
|
221
|
-
|
222
|
-
def to_dict(self) -> Dict[str, Any]:
|
223
|
-
"""Convert to dictionary"""
|
224
|
-
result = {
|
225
|
-
'success': self.success,
|
226
|
-
'error': self.error,
|
227
|
-
'message': self.message
|
228
|
-
}
|
229
|
-
if self.user:
|
230
|
-
result['user'] = self.user.to_dict()
|
231
|
-
if self.api_key:
|
232
|
-
result['api_key'] = self.api_key.to_dict()
|
233
|
-
return result
|
234
|
-
|
235
|
-
|
236
|
-
@dataclass
|
237
|
-
class ApiResponse:
|
238
|
-
"""Generic API response from Robutler Platform"""
|
239
|
-
success: bool
|
240
|
-
data: Optional[Dict[str, Any]] = None
|
241
|
-
error: Optional[str] = None
|
242
|
-
message: Optional[str] = None
|
243
|
-
status_code: int = 200
|
244
|
-
|
245
|
-
def to_dict(self) -> Dict[str, Any]:
|
246
|
-
"""Convert to dictionary"""
|
247
|
-
return {
|
248
|
-
'success': self.success,
|
249
|
-
'data': self.data,
|
250
|
-
'error': self.error,
|
251
|
-
'message': self.message,
|
252
|
-
'status_code': self.status_code
|
253
|
-
}
|
@@ -1,99 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: webagents
|
3
|
-
Version: 0.1.12
|
4
|
-
Summary: Web AI Agents SDK
|
5
|
-
Author: Awesome Opensource Contributors and Robutler Team
|
6
|
-
License: TBD
|
7
|
-
License-File: LICENSE
|
8
|
-
Requires-Python: >=3.10
|
9
|
-
Requires-Dist: colorama>=0.4.6
|
10
|
-
Requires-Dist: fastapi>=0.100.0
|
11
|
-
Requires-Dist: fastmcp>=2.3.0
|
12
|
-
Requires-Dist: httpx>=0.24.0
|
13
|
-
Requires-Dist: litellm>=1.0.0
|
14
|
-
Requires-Dist: pillow>=10.0.0
|
15
|
-
Requires-Dist: pydantic-settings>=2.0.0
|
16
|
-
Requires-Dist: pydantic>=2.7.0
|
17
|
-
Requires-Dist: python-dotenv>=1.0.0
|
18
|
-
Requires-Dist: tiktoken>=0.5.0
|
19
|
-
Requires-Dist: uvicorn>=0.23.0
|
20
|
-
Provides-Extra: dev
|
21
|
-
Requires-Dist: black>=23.0.0; extra == 'dev'
|
22
|
-
Requires-Dist: mypy>=1.0.0; extra == 'dev'
|
23
|
-
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
|
24
|
-
Requires-Dist: pytest>=7.0.0; extra == 'dev'
|
25
|
-
Requires-Dist: ruff>=0.0.270; extra == 'dev'
|
26
|
-
Provides-Extra: examples
|
27
|
-
Requires-Dist: openai-agents>=0.0.16; extra == 'examples'
|
28
|
-
Description-Content-Type: text/markdown
|
29
|
-
|
30
|
-
# Robutler
|
31
|
-
|
32
|
-
Build discoverable and monetizable AI agents.
|
33
|
-
|
34
|
-
|
35
|
-
## Installation
|
36
|
-
|
37
|
-
```bash
|
38
|
-
pip install robutler
|
39
|
-
```
|
40
|
-
|
41
|
-
## Quick Start
|
42
|
-
|
43
|
-
### AI Agent Server
|
44
|
-
|
45
|
-
Create AI agents with OpenAI-compatible endpoints:
|
46
|
-
|
47
|
-
```python
|
48
|
-
from robutler.server import RobutlerServer, pricing
|
49
|
-
from robutler.agent import RobutlerAgent
|
50
|
-
|
51
|
-
# Create tools with pricing
|
52
|
-
@pricing(credits_per_call=100)
|
53
|
-
def get_weather(location: str) -> str:
|
54
|
-
"""Get current weather for a location"""
|
55
|
-
return f"Weather in {location}: Sunny, 72°F"
|
56
|
-
|
57
|
-
# Create an agent with intents
|
58
|
-
agent = RobutlerAgent(
|
59
|
-
name="assistant",
|
60
|
-
instructions="You are a helpful AI assistant.",
|
61
|
-
credits_per_token=5,
|
62
|
-
model="gpt-4o-mini",
|
63
|
-
tools=[get_weather],
|
64
|
-
intents=["help with weather", "provide assistance", "answer questions"]
|
65
|
-
)
|
66
|
-
|
67
|
-
# Create server with automatic endpoint creation
|
68
|
-
app = RobutlerServer(agents=[agent])
|
69
|
-
|
70
|
-
# Endpoints are automatically created:
|
71
|
-
# POST /assistant/chat/completions - OpenAI-compatible chat
|
72
|
-
# GET /assistant - Agent info
|
73
|
-
```
|
74
|
-
|
75
|
-
Run the server:
|
76
|
-
|
77
|
-
```bash
|
78
|
-
uvicorn main:app --host 0.0.0.0 --port 8000
|
79
|
-
```
|
80
|
-
|
81
|
-
### API Client
|
82
|
-
|
83
|
-
```python
|
84
|
-
from robutler.api import RobutlerApi
|
85
|
-
|
86
|
-
async with RobutlerApi() as api:
|
87
|
-
user = await api.get_user_info()
|
88
|
-
credits = await api.get_user_credits()
|
89
|
-
```
|
90
|
-
|
91
|
-
## Documentation
|
92
|
-
|
93
|
-
For comprehensive documentation, visit: [docs.robutler.ai](https://docs.robutler.ai)
|
94
|
-
|
95
|
-
## Environment Variables
|
96
|
-
|
97
|
-
```bash
|
98
|
-
ROBUTLER_API_KEY=your_api_key
|
99
|
-
```
|
@@ -1,96 +0,0 @@
|
|
1
|
-
webagents/__init__.py,sha256=81hdVapJ4bFsW9H_jpnuFFw7yn5UdHBxhy07ELy1skE,373
|
2
|
-
webagents/agents/__init__.py,sha256=JkRjxf5lqVrBNjbV40zdKUGKmv-QKT18Obo1pHZDiPU,244
|
3
|
-
webagents/agents/core/__init__.py,sha256=H_Pj76OywpsztZmcmptmJKAluRue3KK3kMnc1xKXlWg,541
|
4
|
-
webagents/agents/core/base_agent.py,sha256=BPpUxfLOJ3CLU0uDfghDVVyx8oPw72lX1REviuCvFlQ,93798
|
5
|
-
webagents/agents/core/handoffs.py,sha256=1IUIIXPAGzidLRa6vNBgkgEZEP8xFD97quuOZKu5xIg,11075
|
6
|
-
webagents/agents/handoffs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
webagents/agents/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
-
webagents/agents/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
-
webagents/agents/skills/__init__.py,sha256=adsMcCrrzfvRd3DHLhtjyml2zJ5qsMajI0IpAR1B1pk,3199
|
10
|
-
webagents/agents/skills/base.py,sha256=76kYfbxTfT60MMeeTIiANWSXRhdd01OazbTnP1rkGQ4,5098
|
11
|
-
webagents/agents/skills/core/__init__.py,sha256=xT_-sPnLbxTUqjvg0toVCqQyB6OP-An_vBprdv_t0xA,258
|
12
|
-
webagents/agents/skills/core/guardrails/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
-
webagents/agents/skills/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
-
webagents/agents/skills/core/llm/anthropic/__init__.py,sha256=NkitGyW7aAdDPKsIeZaU979us3yg84Hej1L_Ogtw-f8,68
|
15
|
-
webagents/agents/skills/core/llm/litellm/__init__.py,sha256=IEvhO15GW1naAPGizpJc6wjMtzf9As13WLVKMKevUc8,271
|
16
|
-
webagents/agents/skills/core/llm/litellm/skill.py,sha256=nbeI7xnXt3YN9X4IdhqPA3KCKiCxP_ilEewWBisbg-Q,22266
|
17
|
-
webagents/agents/skills/core/llm/openai/__init__.py,sha256=eHvy20Z-geoVAZu8MstRiPXsEXZLJcBq3GtSZSLeOXo,65
|
18
|
-
webagents/agents/skills/core/llm/xai/__init__.py,sha256=HPcn0Ki-Di0kIzV5bvb-Vt-8vGW-ufBmHI9ZBeIdlA8,62
|
19
|
-
webagents/agents/skills/core/mcp/README.md,sha256=5uHOYvBR0XtTHCl4ZN4rZ5KA4-skLlb51KDGMeQOuk8,14948
|
20
|
-
webagents/agents/skills/core/mcp/__init__.py,sha256=0dBqPqObN8kREXP28fX-ANxxyf6NFol_n95TgxTYkjU,366
|
21
|
-
webagents/agents/skills/core/mcp/skill.py,sha256=sS7V5PUTKf0eRGBX3VP-6Rt2dyNnwR7wPjclXbGg8t8,30252
|
22
|
-
webagents/agents/skills/core/memory/__init__.py,sha256=EH3YM_WQ9GZcgJnbxfB5UaKZj6VU3a9k8pD-GcLnExI,328
|
23
|
-
webagents/agents/skills/core/memory/long_term_memory/__init__.py,sha256=Bk4DChm7NDLizK0yS-NBWTA7FWSc_SSVYI80F_BJ6MU,258
|
24
|
-
webagents/agents/skills/core/memory/long_term_memory/memory_skill.py,sha256=6SAFPcN0VNzL1b1k-v29eHeF10EIC8uYsKJ8v5PUFA0,24053
|
25
|
-
webagents/agents/skills/core/memory/short_term_memory/__init__.py,sha256=c9N68CZFCFyc5emkauutc2JNIKrN76emz4loDqVbzzo,216
|
26
|
-
webagents/agents/skills/core/memory/short_term_memory/skill.py,sha256=OkgGkfhC8cth-Py2HmneZOW426cHjhBzKto8KhvrPKI,12790
|
27
|
-
webagents/agents/skills/core/memory/vector_memory/skill.py,sha256=ZvqftsLyyIa59gESjAItjdgLG8G5SlPM8G2Su2q0xqw,19997
|
28
|
-
webagents/agents/skills/core/planning/__init__.py,sha256=vGmkhbYvVD2DFtZAKBLqhgG1qwQz0soxijGjk0u8Pr0,222
|
29
|
-
webagents/agents/skills/core/planning/planner.py,sha256=EFBH9vrYcYaWgXSlC0c8nUP9eGj6b_RyZ4dHbNjFVXU,13900
|
30
|
-
webagents/agents/skills/ecosystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
31
|
-
webagents/agents/skills/ecosystem/crewai/__init__.py,sha256=MfHsOOPpXVUWcXyiip2_svHF8YxrJ60cH28TM8ef__Q,30
|
32
|
-
webagents/agents/skills/ecosystem/database/__init__.py,sha256=x2y6F1FCplEmLaUXKztNDtNg_o1Y61ttiH1EiSrqCJ0,32
|
33
|
-
webagents/agents/skills/ecosystem/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
|
-
webagents/agents/skills/ecosystem/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
-
webagents/agents/skills/ecosystem/google/calendar/__init__.py,sha256=s_e6EPc07c-iO06BUYaVyat1arGkNBLt29BKHubL6-0,77
|
36
|
-
webagents/agents/skills/ecosystem/google/calendar/skill.py,sha256=2yRiornRfF7kfFOO_IbkQpeYdzFRBzceTsMXg0ub25g,15622
|
37
|
-
webagents/agents/skills/ecosystem/n8n/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
|
-
webagents/agents/skills/ecosystem/openai_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
|
-
webagents/agents/skills/ecosystem/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
|
-
webagents/agents/skills/ecosystem/zapier/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
|
-
webagents/agents/skills/robutler/__init__.py,sha256=H2qNyHj358HnsdAtjfdvtPX0VIr5Rb_X6ExLtxqe3V8,164
|
42
|
-
webagents/agents/skills/robutler/storage.py,sha256=Q_L6YZvf98l7RBQqVYNKeur3U9LLZqZe2WkNObJX5RA,14684
|
43
|
-
webagents/agents/skills/robutler/auth/README.md,sha256=mRcuGF3ty3WyoMCwR0pxYnOWNOKyM7h5MW67-9Y3V4M,2556
|
44
|
-
webagents/agents/skills/robutler/auth/__init__.py,sha256=ch56w3JbDv2nQfdFmMV_HBoysJnJ17vFgc-XoPtCrXs,449
|
45
|
-
webagents/agents/skills/robutler/auth/skill.py,sha256=5qZhmsvohfhQGp4WOLdqV16UJOvnwoeXZHyq_vyTMzk,14819
|
46
|
-
webagents/agents/skills/robutler/crm/__init__.py,sha256=A0A4KxlJauzsfmlB9KRoqWorQ18PxHGeSb1jGP-pKLY,335
|
47
|
-
webagents/agents/skills/robutler/crm/skill.py,sha256=8yGheWkLoYrWmDti-zMKcI_SlTIqAZtgiGMTQaOlJJA,12949
|
48
|
-
webagents/agents/skills/robutler/discovery/README.md,sha256=GvLvi6VZSGkrBBYahtktnl1AUWVNQ7gf6NTfUlMtuuQ,9188
|
49
|
-
webagents/agents/skills/robutler/discovery/__init__.py,sha256=lWcOz75Ap7M2Fjno3eycYHjwmm8nL4_J3_6JbIfESGg,317
|
50
|
-
webagents/agents/skills/robutler/discovery/skill.py,sha256=TCJrsLR865z9iiFRVtB-_qO7i2XnqkNKxhkZzMYukDQ,9303
|
51
|
-
webagents/agents/skills/robutler/kv/__init__.py,sha256=sbaE6gr_OksCWIhJE0kFMpFErAHUnW_7coW8HiKePM8,53
|
52
|
-
webagents/agents/skills/robutler/kv/skill.py,sha256=ftZulx4gQD9lQVstCTj7ZjsWML2XcZ6PU-2lSGpePHU,3364
|
53
|
-
webagents/agents/skills/robutler/message_history/__init__.py,sha256=o8SVUowaFtDtVPScDy1BG650mT87_-MI_1IqkB8eUJA,213
|
54
|
-
webagents/agents/skills/robutler/message_history/skill.py,sha256=6GEdhZx4MwZqvjU_bmo6eu3ZmOd1USNhJuuHmMAFgyA,11176
|
55
|
-
webagents/agents/skills/robutler/messages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
|
-
webagents/agents/skills/robutler/nli/__init__.py,sha256=7N_RC2Pp00BFH3brNeUXEFbVhjQjARAIKM8Ep-axeHY,309
|
57
|
-
webagents/agents/skills/robutler/nli/skill.py,sha256=zzEqTeUiA4YzhyiyuLVnFsGzglDocc6UZzTZMxU5_o4,30598
|
58
|
-
webagents/agents/skills/robutler/notifications/__init__.py,sha256=N5ZWC0YkDRpKsIlazlVdYLBDMvhFg3s1ZIOzpi75EJg,74
|
59
|
-
webagents/agents/skills/robutler/notifications/skill.py,sha256=uJpAoCWh0XR475tPhETEePhu0RzvDSxz9cDH2SC7-qQ,5576
|
60
|
-
webagents/agents/skills/robutler/payments/__init__.py,sha256=w2hRAnGDQ29S_fxIKitJ6BM9pPe9TVYn0DfQYjaPYM4,1109
|
61
|
-
webagents/agents/skills/robutler/payments/exceptions.py,sha256=x2Wqu53D-INry2MH4dULUpBgnK24FEGC1bGcO3aI2VM,9696
|
62
|
-
webagents/agents/skills/robutler/payments/skill.py,sha256=Kaamttu19iTWjSpgS79mzXv0pqAXgrATrYvz50fZ26o,27859
|
63
|
-
webagents/agents/skills/robutler/storage/__init__.py,sha256=79t768tWloke6VSZWWy22T5IXWn3nvQCI1WM8mJA4fA,225
|
64
|
-
webagents/agents/skills/robutler/storage/files/__init__.py,sha256=00BpB6z2eJu05Gs6s5hN3Qzhb2InbQUX3uGuJ2Zs2tk,200
|
65
|
-
webagents/agents/skills/robutler/storage/files/skill.py,sha256=v9iJDbMUcJfZjdhsl6ufvpcMx28hqUY7_h16Sr_-FXU,19302
|
66
|
-
webagents/agents/skills/robutler/storage/json/__init__.py,sha256=bLyAhYxHLTkfg-CuHysiANI0UabqnN4BeSdC7ey1isg,188
|
67
|
-
webagents/agents/skills/robutler/storage/json/skill.py,sha256=d3u_apjCrS4fokXKLK_hWnbchRoBaYsFfQRfDTIh1X4,12423
|
68
|
-
webagents/agents/skills/robutler/storage/kv/skill.py,sha256=c-UqWT-v6Xpx3DYTCxy78U7Q0cC-VlFYoTekBdP4OPg,3347
|
69
|
-
webagents/agents/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
|
-
webagents/agents/tools/decorators.py,sha256=yma0Q0yMglJYDF2hSKza0j0O6UoiWXyOywet36UDjq8,17151
|
71
|
-
webagents/agents/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
72
|
-
webagents/agents/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
|
-
webagents/api/__init__.py,sha256=iSNQA260QMfGcMQhXTWE5oPrIdXjxpyTwVCSn_06Im4,400
|
74
|
-
webagents/api/client.py,sha256=pit48wgXkFMYn3RkIjGQ84ZWuvRiG-dlWkrr2lAgNkI,51712
|
75
|
-
webagents/api/types.py,sha256=x6L6Haxx7Nutxmp6WgNKjwyfF1mHxozfazye7YEq4zo,7582
|
76
|
-
webagents/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
|
-
webagents/server/__init__.py,sha256=7dpB8oYWeGvxVo3kXv-us7dAE6BMlUlZOqymAuBfMGM,606
|
78
|
-
webagents/server/middleware.py,sha256=CihiHnpPdW406SIZtxy3ewbCHHMcLO_5cAwgLQRwdzQ,12067
|
79
|
-
webagents/server/models.py,sha256=ncMD7I_NVMNAD2CkuRokHFH0xLw23ZVDZlcHyOpV83c,4800
|
80
|
-
webagents/server/monitoring.py,sha256=u-DbqU4dOFGYiSPlsC-6e1vr_JHw0Qe-amav_tv4ar4,20446
|
81
|
-
webagents/server/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
|
-
webagents/server/context/context_vars.py,sha256=dPZqQPClYdwFrLI_oMtVBw_eglnkbVdiArHMxSDSVCE,3613
|
83
|
-
webagents/server/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
84
|
-
webagents/server/core/app.py,sha256=YG_uFzca9FKRbs_IxxEMbqJ9XGnQuZXVmWnE3K6Q700,38455
|
85
|
-
webagents/server/core/middleware.py,sha256=i5OmQCtuDKe_V1Z3cVSWn5TsEpo_K1CmiHNjmDHidMA,2225
|
86
|
-
webagents/server/core/models.py,sha256=w4KFjulstrdbojf4zaRj3k_wtATZMHZVAFX0XalJ6Sk,4674
|
87
|
-
webagents/server/core/monitoring.py,sha256=j6fKkKgb-vRZX3fxT5FzcNGzPK7ykws3D1R9lXjQdVQ,1523
|
88
|
-
webagents/server/endpoints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
|
-
webagents/server/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
|
-
webagents/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
91
|
-
webagents/utils/logging.py,sha256=F2Cfee7O_KgYvUIvuAqTZrkE8FXJ3_Zgvn-jR3rHC8Y,14057
|
92
|
-
webagents-0.1.12.dist-info/METADATA,sha256=NFP0dW63rBfma3WdAXKjys2NNR2rQQP6Cft5Q2w4FbU,2372
|
93
|
-
webagents-0.1.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
94
|
-
webagents-0.1.12.dist-info/entry_points.txt,sha256=bITAYBK8-H8EQUrDctEeEKuer4jAp3lfxKfvH5TT1eM,54
|
95
|
-
webagents-0.1.12.dist-info/licenses/LICENSE,sha256=A2JlSaWav2SO5ZFjs7isv2bDZRPLHnbW4ne8BEySbjA,3
|
96
|
-
webagents-0.1.12.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
TBD
|
File without changes
|
File without changes
|