daita-agents 0.1.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.

Potentially problematic release.


This version of daita-agents might be problematic. Click here for more details.

Files changed (69) hide show
  1. daita/__init__.py +208 -0
  2. daita/agents/__init__.py +33 -0
  3. daita/agents/base.py +722 -0
  4. daita/agents/substrate.py +895 -0
  5. daita/cli/__init__.py +145 -0
  6. daita/cli/__main__.py +7 -0
  7. daita/cli/ascii_art.py +44 -0
  8. daita/cli/core/__init__.py +0 -0
  9. daita/cli/core/create.py +254 -0
  10. daita/cli/core/deploy.py +473 -0
  11. daita/cli/core/deployments.py +309 -0
  12. daita/cli/core/import_detector.py +219 -0
  13. daita/cli/core/init.py +382 -0
  14. daita/cli/core/logs.py +239 -0
  15. daita/cli/core/managed_deploy.py +709 -0
  16. daita/cli/core/run.py +648 -0
  17. daita/cli/core/status.py +421 -0
  18. daita/cli/core/test.py +239 -0
  19. daita/cli/core/webhooks.py +172 -0
  20. daita/cli/main.py +588 -0
  21. daita/cli/utils.py +541 -0
  22. daita/config/__init__.py +62 -0
  23. daita/config/base.py +159 -0
  24. daita/config/settings.py +184 -0
  25. daita/core/__init__.py +262 -0
  26. daita/core/decision_tracing.py +701 -0
  27. daita/core/exceptions.py +480 -0
  28. daita/core/focus.py +251 -0
  29. daita/core/interfaces.py +76 -0
  30. daita/core/plugin_tracing.py +550 -0
  31. daita/core/relay.py +695 -0
  32. daita/core/reliability.py +381 -0
  33. daita/core/scaling.py +444 -0
  34. daita/core/tools.py +402 -0
  35. daita/core/tracing.py +770 -0
  36. daita/core/workflow.py +1084 -0
  37. daita/display/__init__.py +1 -0
  38. daita/display/console.py +160 -0
  39. daita/execution/__init__.py +58 -0
  40. daita/execution/client.py +856 -0
  41. daita/execution/exceptions.py +92 -0
  42. daita/execution/models.py +317 -0
  43. daita/llm/__init__.py +60 -0
  44. daita/llm/anthropic.py +166 -0
  45. daita/llm/base.py +373 -0
  46. daita/llm/factory.py +101 -0
  47. daita/llm/gemini.py +152 -0
  48. daita/llm/grok.py +114 -0
  49. daita/llm/mock.py +135 -0
  50. daita/llm/openai.py +109 -0
  51. daita/plugins/__init__.py +141 -0
  52. daita/plugins/base.py +37 -0
  53. daita/plugins/base_db.py +167 -0
  54. daita/plugins/elasticsearch.py +844 -0
  55. daita/plugins/mcp.py +481 -0
  56. daita/plugins/mongodb.py +510 -0
  57. daita/plugins/mysql.py +351 -0
  58. daita/plugins/postgresql.py +331 -0
  59. daita/plugins/redis_messaging.py +500 -0
  60. daita/plugins/rest.py +529 -0
  61. daita/plugins/s3.py +761 -0
  62. daita/plugins/slack.py +729 -0
  63. daita/utils/__init__.py +18 -0
  64. daita_agents-0.1.0.dist-info/METADATA +350 -0
  65. daita_agents-0.1.0.dist-info/RECORD +69 -0
  66. daita_agents-0.1.0.dist-info/WHEEL +5 -0
  67. daita_agents-0.1.0.dist-info/entry_points.txt +2 -0
  68. daita_agents-0.1.0.dist-info/licenses/LICENSE +56 -0
  69. daita_agents-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,18 @@
1
+ """
2
+ Utilities for Daita Agents.
3
+
4
+ This module provides utility functions and helpers used throughout the framework.
5
+
6
+ Note: Token tracking has been removed from this module. All token tracking
7
+ is now handled automatically by the unified tracing system in daita.core.tracing.
8
+ LLM providers automatically track tokens without any manual setup required.
9
+
10
+ For token and performance statistics, use:
11
+ - agent.get_trace_stats() - Get comprehensive stats for a specific agent
12
+ - trace_manager.get_agent_metrics(agent_id) - Get metrics via trace manager
13
+ - trace_manager.get_global_metrics() - Get system-wide metrics
14
+ """
15
+
16
+ __all__ = [
17
+ # No utilities currently exported - all functionality moved to core modules
18
+ ]
@@ -0,0 +1,350 @@
1
+ Metadata-Version: 2.4
2
+ Name: daita-agents
3
+ Version: 0.1.0
4
+ Summary: Daita Agents - Data focused AI agent framework with free local use and premium hosted enterprise features
5
+ Author-email: Daita <support@daita-tech.io>
6
+ License: Proprietary
7
+ Project-URL: Homepage, https://daita-tech.io
8
+ Project-URL: Documentation, https://docs.daita-tech.io
9
+ Keywords: ai,agents,llm,automation,workflows,sdk
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: Other/Proprietary License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
+ Requires-Python: >=3.11
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Requires-Dist: pydantic>=2.0.0
21
+ Requires-Dist: aiohttp>=3.8.0
22
+ Requires-Dist: python-dotenv>=1.0.0
23
+ Requires-Dist: click>=8.0.0
24
+ Requires-Dist: watchdog>=3.0.0
25
+ Requires-Dist: croniter>=1.0.0
26
+ Provides-Extra: openai
27
+ Requires-Dist: openai>=1.0.0; extra == "openai"
28
+ Provides-Extra: anthropic
29
+ Requires-Dist: anthropic>=0.5.0; extra == "anthropic"
30
+ Provides-Extra: google
31
+ Requires-Dist: google-generativeai>=0.3.0; extra == "google"
32
+ Provides-Extra: transformers
33
+ Requires-Dist: transformers>=4.51.0; extra == "transformers"
34
+ Provides-Extra: postgresql
35
+ Requires-Dist: asyncpg>=0.27.0; extra == "postgresql"
36
+ Requires-Dist: psycopg2-binary>=2.9.0; extra == "postgresql"
37
+ Provides-Extra: mysql
38
+ Requires-Dist: aiomysql>=0.2.0; extra == "mysql"
39
+ Requires-Dist: SQLAlchemy>=2.0.0; extra == "mysql"
40
+ Provides-Extra: mongodb
41
+ Requires-Dist: motor>=3.0.0; extra == "mongodb"
42
+ Provides-Extra: sqlite
43
+ Requires-Dist: aiosqlite>=0.21.0; extra == "sqlite"
44
+ Requires-Dist: SQLAlchemy>=2.0.0; extra == "sqlite"
45
+ Provides-Extra: elasticsearch
46
+ Requires-Dist: elasticsearch>=8.0.0; extra == "elasticsearch"
47
+ Provides-Extra: aws
48
+ Requires-Dist: boto3>=1.38.0; extra == "aws"
49
+ Provides-Extra: slack
50
+ Requires-Dist: slack-sdk>=3.31.0; extra == "slack"
51
+ Provides-Extra: mcp
52
+ Requires-Dist: mcp>=1.0.0; extra == "mcp"
53
+ Provides-Extra: scheduling
54
+ Requires-Dist: boto3>=1.38.0; extra == "scheduling"
55
+ Provides-Extra: data
56
+ Requires-Dist: pandas>=1.5.0; extra == "data"
57
+ Requires-Dist: numpy>=1.20.0; extra == "data"
58
+ Requires-Dist: openpyxl>=3.1.0; extra == "data"
59
+ Requires-Dist: beautifulsoup4>=4.13.0; extra == "data"
60
+ Requires-Dist: lxml>=5.4.0; extra == "data"
61
+ Requires-Dist: jsonpath-ng>=1.7.0; extra == "data"
62
+ Requires-Dist: fuzzywuzzy>=0.18.0; extra == "data"
63
+ Provides-Extra: datascience
64
+ Requires-Dist: scikit-learn>=1.6.0; extra == "datascience"
65
+ Requires-Dist: scipy>=1.15.0; extra == "datascience"
66
+ Requires-Dist: statsmodels>=0.14.4; extra == "datascience"
67
+ Requires-Dist: networkx>=3.4.0; extra == "datascience"
68
+ Requires-Dist: nltk>=3.9.0; extra == "datascience"
69
+ Provides-Extra: webapi
70
+ Requires-Dist: fastapi>=0.115.0; extra == "webapi"
71
+ Requires-Dist: uvicorn>=0.34.0; extra == "webapi"
72
+ Requires-Dist: python-multipart>=0.0.20; extra == "webapi"
73
+ Provides-Extra: utils
74
+ Requires-Dist: aiofiles>=24.1.0; extra == "utils"
75
+ Requires-Dist: PyYAML>=6.0.0; extra == "utils"
76
+ Requires-Dist: certifi>=2025.4.0; extra == "utils"
77
+ Requires-Dist: PyJWT>=2.10.0; extra == "utils"
78
+ Requires-Dist: psutil>=7.0.0; extra == "utils"
79
+ Provides-Extra: autonomous
80
+ Requires-Dist: croniter>=1.0.0; extra == "autonomous"
81
+ Requires-Dist: boto3>=1.38.0; extra == "autonomous"
82
+ Provides-Extra: llm
83
+ Requires-Dist: openai>=1.0.0; extra == "llm"
84
+ Requires-Dist: anthropic>=0.5.0; extra == "llm"
85
+ Requires-Dist: google-generativeai>=0.3.0; extra == "llm"
86
+ Provides-Extra: database
87
+ Requires-Dist: asyncpg>=0.27.0; extra == "database"
88
+ Requires-Dist: psycopg2-binary>=2.9.0; extra == "database"
89
+ Requires-Dist: aiomysql>=0.2.0; extra == "database"
90
+ Requires-Dist: SQLAlchemy>=2.0.0; extra == "database"
91
+ Requires-Dist: motor>=3.0.0; extra == "database"
92
+ Requires-Dist: aiosqlite>=0.21.0; extra == "database"
93
+ Requires-Dist: elasticsearch>=8.0.0; extra == "database"
94
+ Provides-Extra: cloud
95
+ Requires-Dist: boto3>=1.38.0; extra == "cloud"
96
+ Requires-Dist: slack-sdk>=3.31.0; extra == "cloud"
97
+ Provides-Extra: complete
98
+ Requires-Dist: openai>=1.0.0; extra == "complete"
99
+ Requires-Dist: anthropic>=0.5.0; extra == "complete"
100
+ Requires-Dist: google-generativeai>=0.3.0; extra == "complete"
101
+ Requires-Dist: asyncpg>=0.27.0; extra == "complete"
102
+ Requires-Dist: psycopg2-binary>=2.9.0; extra == "complete"
103
+ Requires-Dist: aiomysql>=0.2.0; extra == "complete"
104
+ Requires-Dist: SQLAlchemy>=2.0.0; extra == "complete"
105
+ Requires-Dist: motor>=3.0.0; extra == "complete"
106
+ Requires-Dist: boto3>=1.38.0; extra == "complete"
107
+ Requires-Dist: slack-sdk>=3.31.0; extra == "complete"
108
+ Requires-Dist: mcp>=1.0.0; extra == "complete"
109
+ Requires-Dist: aiofiles>=24.1.0; extra == "complete"
110
+ Requires-Dist: PyYAML>=6.0.0; extra == "complete"
111
+ Requires-Dist: certifi>=2025.4.0; extra == "complete"
112
+ Requires-Dist: PyJWT>=2.10.0; extra == "complete"
113
+ Requires-Dist: psutil>=7.0.0; extra == "complete"
114
+ Provides-Extra: all
115
+ Requires-Dist: openai>=1.0.0; extra == "all"
116
+ Requires-Dist: anthropic>=0.5.0; extra == "all"
117
+ Requires-Dist: google-generativeai>=0.3.0; extra == "all"
118
+ Requires-Dist: transformers>=4.51.0; extra == "all"
119
+ Requires-Dist: asyncpg>=0.27.0; extra == "all"
120
+ Requires-Dist: psycopg2-binary>=2.9.0; extra == "all"
121
+ Requires-Dist: aiomysql>=0.2.0; extra == "all"
122
+ Requires-Dist: SQLAlchemy>=2.0.0; extra == "all"
123
+ Requires-Dist: motor>=3.0.0; extra == "all"
124
+ Requires-Dist: aiosqlite>=0.21.0; extra == "all"
125
+ Requires-Dist: elasticsearch>=8.0.0; extra == "all"
126
+ Requires-Dist: boto3>=1.38.0; extra == "all"
127
+ Requires-Dist: slack-sdk>=3.31.0; extra == "all"
128
+ Requires-Dist: mcp>=1.0.0; extra == "all"
129
+ Requires-Dist: pandas>=1.5.0; extra == "all"
130
+ Requires-Dist: numpy>=1.20.0; extra == "all"
131
+ Requires-Dist: openpyxl>=3.1.0; extra == "all"
132
+ Requires-Dist: beautifulsoup4>=4.13.0; extra == "all"
133
+ Requires-Dist: lxml>=5.4.0; extra == "all"
134
+ Requires-Dist: jsonpath-ng>=1.7.0; extra == "all"
135
+ Requires-Dist: fuzzywuzzy>=0.18.0; extra == "all"
136
+ Requires-Dist: scikit-learn>=1.6.0; extra == "all"
137
+ Requires-Dist: scipy>=1.15.0; extra == "all"
138
+ Requires-Dist: statsmodels>=0.14.4; extra == "all"
139
+ Requires-Dist: networkx>=3.4.0; extra == "all"
140
+ Requires-Dist: nltk>=3.9.0; extra == "all"
141
+ Requires-Dist: fastapi>=0.115.0; extra == "all"
142
+ Requires-Dist: uvicorn>=0.34.0; extra == "all"
143
+ Requires-Dist: python-multipart>=0.0.20; extra == "all"
144
+ Requires-Dist: aiofiles>=24.1.0; extra == "all"
145
+ Requires-Dist: PyYAML>=6.0.0; extra == "all"
146
+ Requires-Dist: certifi>=2025.4.0; extra == "all"
147
+ Requires-Dist: PyJWT>=2.10.0; extra == "all"
148
+ Requires-Dist: psutil>=7.0.0; extra == "all"
149
+ Provides-Extra: dev
150
+ Requires-Dist: pytest>=8.0.0; extra == "dev"
151
+ Requires-Dist: pytest-asyncio>=0.26.0; extra == "dev"
152
+ Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
153
+ Requires-Dist: black>=23.0.0; extra == "dev"
154
+ Requires-Dist: mypy>=1.4.0; extra == "dev"
155
+ Dynamic: license-file
156
+
157
+ # Daita Agents
158
+
159
+ [![License](https://img.shields.io/badge/license-Proprietary-red.svg)](LICENSE)
160
+ [![Python](https://img.shields.io/badge/python-3.9%2B-blue)](https://www.python.org/downloads/)
161
+ [![PyPI](https://img.shields.io/pypi/v/daita-agents)](https://pypi.org/project/daita-agents/)
162
+
163
+ **Daita Agents** is a commercial AI agent framework designed for production environments. Build intelligent, scalable, data first agent systems with automatic tracing, reliability features, and enterprise-grade observability.
164
+
165
+ ## Quick Start
166
+
167
+ ```bash
168
+ # Install the SDK
169
+ pip install daita-agents
170
+
171
+ # Set up your first agent
172
+ daita init my-project
173
+ cd my-project
174
+
175
+ # Create and test an agent
176
+ daita create agent my-agent
177
+ daita test my-agent
178
+ ```
179
+
180
+ ## Key Features
181
+
182
+ ### Free SDK Features
183
+ - **Production-Ready Agents**: BaseAgent and SubstrateAgent with automatic lifecycle management
184
+ - **Multi-LLM Support**: OpenAI, Anthropic, Google Gemini, and xAI Grok integrations
185
+ - **Automatic Tracing**: Zero-configuration observability for all operations
186
+ - **Plugin System**: Database (PostgreSQL, MySQL, MongoDB) and API integrations
187
+ - **Workflow Orchestration**: Multi-agent systems with relay communication
188
+ - **CLI Tools**: Development, testing, and deployment commands
189
+
190
+ ### Premium Features
191
+ - **Enterprise Integrations**: Advanced database plugins and connectors
192
+ - **Horizontal Scaling**: Agent pools and load balancing
193
+ - **Advanced Reliability**: Circuit breakers, backpressure control, task management
194
+ - **Dashboard Analytics**: Real-time monitoring and performance insights
195
+ - **Priority Support**: Direct access to engineering team
196
+ - **Custom Integrations**: Tailored solutions for enterprise needs
197
+
198
+ ## Installation
199
+
200
+ ```bash
201
+ pip install daita-agents
202
+ ```
203
+
204
+ For development with additional tools:
205
+ ```bash
206
+ pip install daita-agents[dev]
207
+ ```
208
+
209
+ ## Basic Usage
210
+
211
+ ### Simple Agent
212
+ ```python
213
+ from daita import SubstrateAgent, AgentConfig, LLMConfig
214
+
215
+ # Configure your agent
216
+ config = AgentConfig(
217
+ name="data-processor",
218
+ llm=LLMConfig(
219
+ provider="openai",
220
+ model="gpt-4",
221
+ )
222
+ )
223
+
224
+ # Create and run agent
225
+ agent = SubstrateAgent(config)
226
+ result = await agent.process("Analyze this data: {...}")
227
+ ```
228
+
229
+ ### Multi-Agent Workflow
230
+ ```python
231
+ from daita import Workflow, BaseAgent
232
+
233
+ # Create workflow with multiple agents
234
+ workflow = Workflow()
235
+ workflow.connect(data_agent, "processed_data", analysis_agent)
236
+ workflow.connect(analysis_agent, "insights", report_agent)
237
+
238
+ # Execute workflow
239
+ results = await workflow.run(input_data)
240
+ ```
241
+
242
+ ### CLI Commands
243
+ ```bash
244
+ # Initialize new project
245
+ daita init my-project
246
+
247
+ # Create components
248
+ daita create agent my-agent
249
+ daita create workflow data-pipeline
250
+
251
+ # Test and deploy
252
+ daita test --watch
253
+ daita push production
254
+ ```
255
+
256
+ ## Architecture
257
+
258
+ ### Core Components
259
+ - **Agents**: Intelligent processing units with LLM integration
260
+ - **Workflows**: Orchestrate multiple agents with communication channels
261
+ - **Plugins**: Extensible integrations for databases and APIs
262
+ - **Tracing**: Automatic observability for debugging and monitoring
263
+ - **Reliability**: Production-grade error handling and retry logic
264
+
265
+ ### Automatic Tracing
266
+ All operations are automatically traced:
267
+ - Agent lifecycle and decisions
268
+ - LLM calls with token usage and costs
269
+ - Plugin/tool executions
270
+ - Workflow communication
271
+ - Error handling and retries
272
+
273
+ ## Examples
274
+
275
+ ### Database Integration
276
+ ```python
277
+ from daita.plugins import traced_postgresql
278
+
279
+ async def process_data():
280
+ # Automatic tracing of database operations
281
+ async with traced_postgresql() as db:
282
+ results = await db.query("SELECT * FROM users")
283
+ return await agent.analyze(results)
284
+ ```
285
+
286
+ ### Decision Tracing
287
+ ```python
288
+ from daita import record_decision_point
289
+
290
+ async def make_decision(data):
291
+ confidence = analyze_confidence(data)
292
+
293
+ # Trace decision reasoning
294
+ decision = record_decision_point(
295
+ decision_type="classification",
296
+ confidence=confidence,
297
+ reasoning="Based on data patterns..."
298
+ )
299
+
300
+ return decision
301
+ ```
302
+
303
+ ## Authentication & Deployment
304
+
305
+ ### API Key Setup
306
+ ```bash
307
+ export DAITA_API_KEY="your-api-key"
308
+ export OPENAI_API_KEY="your-openai-key"
309
+ ```
310
+
311
+ ### Cloud Deployment
312
+ ```bash
313
+ # Deploy to managed infrastructure
314
+ daita push production
315
+
316
+ # Monitor deployments
317
+ daita logs production
318
+ daita status
319
+ ```
320
+
321
+ ## Documentation
322
+
323
+ - **[Getting Started Guide](https://docs.daita-tech.io/getting-started)**
324
+ - **[API Reference](https://docs.daita-tech.io/api)**
325
+ - **[Plugin Development](https://docs.daita-tech.io/plugins)**
326
+ - **[Enterprise Features](https://docs.daita-tech.io/enterprise)**
327
+
328
+ ## Commercial Licensing
329
+
330
+ Daita Agents is commercial software with a generous free tier:
331
+
332
+ - **Free**: Core SDK, basic plugins, community support
333
+ - **Premium**: Enterprise features, advanced scaling, priority support
334
+ - **Enterprise**: Custom integrations, dedicated support, SLA
335
+
336
+ [Contact Sales](https://daita-tech.io/contact/sales) for premium features and enterprise licensing.
337
+
338
+ ## Support
339
+
340
+ - **Documentation**: [docs.daita-technologies.com](https://docs.daita-tech.io)
341
+ - **Commercial Support**: [support@daita-tech.io](mailto:support@daita-tech.io)
342
+
343
+ ## Links
344
+
345
+ - **Homepage**: [daita-tech.io](https://daita-tech.io)
346
+ - **PyPI Package**: [pypi.org/project/daita-agents](https://pypi.org/project/daita-agents/)
347
+
348
+ ---
349
+
350
+ *Built for production AI agent systems. Start free, scale with premium features.*
@@ -0,0 +1,69 @@
1
+ daita/__init__.py,sha256=PuW6uC2EfM10jaY9yu4eZkkhKhHXO1UdOq2dzgi-vnk,5685
2
+ daita/agents/__init__.py,sha256=jd3c2GF_SUOPILRdEFafzdsHtzu5O-V8-CBls-LRE5U,985
3
+ daita/agents/base.py,sha256=EdDgY7aVzm4a98BD4x6TrMVlonYBbXxyT5uRDnrOWk0,27773
4
+ daita/agents/substrate.py,sha256=7LbSwpqEgVS6nKBS7jk0_bKWev1XlXtETgLEX8l6NH8,33533
5
+ daita/cli/__init__.py,sha256=jjBK-4gDPz9ovVPEKPhuyJdzSVsEmHFATlve22Ge00o,3620
6
+ daita/cli/__main__.py,sha256=iu9Ex1SUaI8bGeZoH1zBsZZiFV0BHAtItZoQ_tGDXoY,110
7
+ daita/cli/ascii_art.py,sha256=uNLmsafRpIMzUdC4jZuL0xFlWGe8uV0vLQK5fusu7cg,1535
8
+ daita/cli/main.py,sha256=0gN9MCl09ngWlz9JntF1XNeMXvtYCMyvVjnhCkqiaGY,19895
9
+ daita/cli/utils.py,sha256=ntPZoIzIdw72EKOIGsRIkRzzZbfHYQFQkeEYYuI6aH0,15073
10
+ daita/cli/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ daita/cli/core/create.py,sha256=O2tMLYB0JxBMjNWidKncbgadr9g0wu-bIieDjwFHvRQ,7740
12
+ daita/cli/core/deploy.py,sha256=__dpm-CAtW4gDjgxnIgG_xdjgg7OT7NSgbbGnfEc7EI,17671
13
+ daita/cli/core/deployments.py,sha256=bVBtAiGr07A-3mwRcBgJ42NJcKJ6Aj0dqNPWwbz38b4,12162
14
+ daita/cli/core/import_detector.py,sha256=t_-f-Qmf3eI9nhSSU5_0itghp6kdbfZk8NnSaQMuGcQ,8281
15
+ daita/cli/core/init.py,sha256=6mhd5vLisyjHlLCeWT8cM3Vic0QXN97knrUEkeKq54k,10460
16
+ daita/cli/core/logs.py,sha256=gAvwgNH14HUmRbk_toWFXC2yM8PyqcuWtE77WxbhT44,8732
17
+ daita/cli/core/managed_deploy.py,sha256=iivdNDVS0xO6RlUWT2ekTuuXMiOiA6EHf3sHjJvNF74,26789
18
+ daita/cli/core/run.py,sha256=TeYHln7zIA8yg7IG1PS96Agmg4IhniOdoJE2NZG6Aug,25226
19
+ daita/cli/core/status.py,sha256=gp_Bj9xwMnhurCtjxhwnu2NyLuD1F8bgrebCk42RoCc,15562
20
+ daita/cli/core/test.py,sha256=56GzfF9UI8eK8ZEn3pUgQLHvl3fem04ecZheuVG_Mts,8252
21
+ daita/cli/core/webhooks.py,sha256=WttdnxEVROTMtNBWhuFAxmCIwYKsqW63EHO9cglEJd8,6243
22
+ daita/config/__init__.py,sha256=wcCl3oHI0OQxSYnsAfaBMp9axTDWq_CVIu1WMUzSUJc,1218
23
+ daita/config/base.py,sha256=7Lomob90YIngmtOi_2AoCikf38cON3vnb7rU3FSfgFc,5841
24
+ daita/config/settings.py,sha256=ODAeUr6ZJaG4OTa-zmFQ-3ktGd6L6UziFI0DhVgEWcU,6707
25
+ daita/core/__init__.py,sha256=yGu8T_R9BXLLvUseqFf_8DF78tMW39Fog7cTw44o3dU,6026
26
+ daita/core/decision_tracing.py,sha256=j6HVA0b4VpoTVvvw4KZv3e4Ei1GfhTQIch665MLnt7w,27185
27
+ daita/core/exceptions.py,sha256=frhQyDbiUndd2Rh_MV3xG5tQ8Cbe8rc2ETIwnEgy1UM,17867
28
+ daita/core/focus.py,sha256=d8wK6vjPg2OuoKuYPV78uXZve4ZRzlxqu5KwXxQ0MWs,10294
29
+ daita/core/interfaces.py,sha256=cX7AGrnhq1Bh0K-dU9Yw1otz-vxUCjaX0L1ATCeLZyg,1934
30
+ daita/core/plugin_tracing.py,sha256=VSA_G99Vjy7CTCPl19UteW1Bbrepd4LcDGGkvRbMiQA,18903
31
+ daita/core/relay.py,sha256=nVCs6Qp5zyjCq44nQoyeYiUr4VtzA4KtBwGqhCh-U8c,25471
32
+ daita/core/reliability.py,sha256=hCJEo0pKR4QWtOIyXgiBXGvnvWGu4u5hDG3jnGSOXOA,13445
33
+ daita/core/scaling.py,sha256=5MdB2s5wopjYXtoswoatUCvvkDCrJ-EruM8tixU5c8k,15708
34
+ daita/core/tools.py,sha256=wsauzzoduiE5L0F-aNiul8oy5xiMvmrFBQh_cgCYT94,12690
35
+ daita/core/tracing.py,sha256=pW-J3f4YKv_ir-_jcek78IEeAfHEXgBPQJedn99PJ9o,29226
36
+ daita/core/workflow.py,sha256=ZX8Au4bLvnK2RCmwHD4hxDT2jvqoaIV35cUgMH65KW0,43903
37
+ daita/display/__init__.py,sha256=HJMxaxO6FfcXIVBJrmqAvp4PlQ_w2rBkF4utO9LcYYM,44
38
+ daita/display/console.py,sha256=h8F6plT2Z0CQ8GFdlFqm5UzQDJWqUAZEXiTSLCt8Cgc,5899
39
+ daita/execution/__init__.py,sha256=gxu8HtD9Tf-dwhiAAADsvwxIgUXAHfRzGuFRBVRQPaY,1835
40
+ daita/execution/client.py,sha256=8QmjJVr4Kcr0TFz2lXvPgZFh42cK3VBmeu0cT0w8a04,31106
41
+ daita/execution/exceptions.py,sha256=aruKaqTsyS5-yAmlp2kiiPSGMXbWvkrCbXayxxgHy1Y,2985
42
+ daita/execution/models.py,sha256=gD3RIc3OQqpcb9w4a_Ij8zKxRyAl35seQ9KLZlQwjmY,11087
43
+ daita/llm/__init__.py,sha256=sb7fT3eAkFoa4ZR7jY2aEY0RAF53P10T8lgiKiofAT0,1496
44
+ daita/llm/anthropic.py,sha256=dD4mb2z8BE11lO4aKyJyLEx85MiQA0GeBsde7PhQlsg,5828
45
+ daita/llm/base.py,sha256=2NPusySkMHhWLxNScuO2-zQrtUsrnuKw8RDpSrDY148,13041
46
+ daita/llm/factory.py,sha256=FZAxNYFrOjs7FRDIhhBtEtkuQ0AVqMXsmZlQB5VNi3o,3230
47
+ daita/llm/gemini.py,sha256=elrWuNSIpN2y7p8BWM1CWETk_nCuXIzaTW2rBv8aWCk,5667
48
+ daita/llm/grok.py,sha256=EOO0z1D6WRt1FmYGy_pvOCPnA3uQBdThgwHzy1j90r8,3787
49
+ daita/llm/mock.py,sha256=YSjtaElPGjWxdf3eyFIuJn02jiCxVYP8WtNdC_6wJ0A,4623
50
+ daita/llm/openai.py,sha256=u13DxTuzloHXJfxgXbx_U2zgtidjyb7kooTtGlTyYnA,3621
51
+ daita/plugins/__init__.py,sha256=sXLQ7bLLryKBourjYtXxz0Nz-EXvQgdBLvf6O-alXzU,4040
52
+ daita/plugins/base.py,sha256=mWaqMrOJk_GvpCoL3r7H1esBt9HE2FJUMkiz_5D4djM,930
53
+ daita/plugins/base_db.py,sha256=mCVpi86rPvxVjE4KlreI_nmSa9yhkqkHJZE6TBZz8Rs,5335
54
+ daita/plugins/elasticsearch.py,sha256=Udzme7BUXSiXbvqaU76CfJQIDwyrHQRHNGxTqx3NLbg,28931
55
+ daita/plugins/mcp.py,sha256=d8giYEaTtL7ZBSuKFNXFw_6OCPXE97yJaVeaWV_U-WM,16121
56
+ daita/plugins/mongodb.py,sha256=tJDgvCsG0bgSf9EHk3uTFhjU76ZX7Ee3yH1hyWdeg0g,17512
57
+ daita/plugins/mysql.py,sha256=IXj8rnhwbgTVOqRXoaGM-P0MRmTM76ad9VFlK5Bivwc,11725
58
+ daita/plugins/postgresql.py,sha256=KP97e8dwKd_CrpZG0r7bcLT1YhMeUsdJZtChzEA_zwU,11296
59
+ daita/plugins/redis_messaging.py,sha256=S-tyuIZ0F0MBHE6ltY0uowKtOS4qM9rBY-uqWHxvLXM,17072
60
+ daita/plugins/rest.py,sha256=Ecr29wy6Zf7gQ2E8nFeujCKAn6y5MNVp5UC-e0NYBlY,17291
61
+ daita/plugins/s3.py,sha256=Va-cK1icvqhibIx_h9C0dv_vK98HSWRiV_WTbYqsPV0,26627
62
+ daita/plugins/slack.py,sha256=K-9CGjOh0ub0aFK7rEzS0jeXYD-NSHKPxB1ajL1jgBM,25431
63
+ daita/utils/__init__.py,sha256=Qsn3SJQaiOXGdi1kpmQoG9eKGwILPzwLu715jPfdHAQ,703
64
+ daita_agents-0.1.0.dist-info/licenses/LICENSE,sha256=Q8Tqw4_-KZ1vbI-bjQr18DqGp-vVsPfYy3W5hji2Gvc,2355
65
+ daita_agents-0.1.0.dist-info/METADATA,sha256=quYBqQyFZk-yHH97VflKIyRg4ka4ewxto5EoudJxXXU,12268
66
+ daita_agents-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
67
+ daita_agents-0.1.0.dist-info/entry_points.txt,sha256=zoXkr0vtmch03AzMgESqBtHB0cQIVQuNXz2jLJsyjmk,46
68
+ daita_agents-0.1.0.dist-info/top_level.txt,sha256=a5PxeG_miSR4662lb7kGqvTEl0IDicKmbuiJ_aCIhe0,6
69
+ daita_agents-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ daita = daita.cli.main:main
@@ -0,0 +1,56 @@
1
+ DAITA AGENTS SOFTWARE LICENSE AGREEMENT
2
+
3
+ Copyright (c) 2025 Daita Corp. All rights reserved.
4
+
5
+ COMMERCIAL SOFTWARE LICENSE
6
+
7
+ This software is proprietary and confidential. This license agreement ("Agreement")
8
+ governs your use of the Daita Agents SDK software ("Software").
9
+
10
+ GRANT OF LICENSE:
11
+ Subject to the terms of this Agreement, Daita Corp. grants you a non-exclusive,
12
+ non-transferable license to use the Software in accordance with the following terms:
13
+
14
+ 1. FREE SDK USAGE:
15
+ - You may use the core SDK functionality for development and production applications
16
+ - You may integrate the SDK into your applications and distribute those applications
17
+ - You may not redistribute, sell, or sublicense the SDK itself
18
+
19
+ 2. PREMIUM FEATURES:
20
+ - Advanced features, enterprise integrations, and enhanced support require a paid license
21
+ - Premium features are clearly marked in documentation and require valid subscription
22
+ - Unauthorized use of premium features is prohibited
23
+
24
+ 3. RESTRICTIONS:
25
+ - You may not reverse engineer, decompile, or disassemble the Software
26
+ - You may not modify, adapt, or create derivative works of the Software
27
+ - You may not remove or alter any proprietary notices or labels
28
+ - Source code access is not provided under this license
29
+
30
+ 4. DATA AND PRIVACY:
31
+ - The Software may collect usage analytics and performance metrics
32
+ - No personal data or application data is transmitted without explicit consent
33
+ - You retain ownership of all data processed through the Software
34
+
35
+ 5. SUPPORT:
36
+ - Community support is provided for free SDK users
37
+ - Premium support is available with paid subscriptions
38
+ - No warranty or service level agreements for free usage
39
+
40
+ 6. TERMINATION:
41
+ - This license is effective until terminated
42
+ - License terminates automatically if you breach any terms
43
+ - Upon termination, you must cease all use and destroy all copies
44
+
45
+ 7. DISCLAIMER:
46
+ THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
47
+ DAITA CORP. DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED.
48
+
49
+ 8. LIMITATION OF LIABILITY:
50
+ IN NO EVENT SHALL DAITA CORP. BE LIABLE FOR ANY DAMAGES
51
+ WHATSOEVER ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE.
52
+
53
+ For commercial licensing, premium features, or enterprise agreements, contact:
54
+ support@daita-tech.io
55
+
56
+ This Agreement is governed by the laws of Delaware.
@@ -0,0 +1 @@
1
+ daita