daita-agents 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.
Files changed (69) hide show
  1. daita/__init__.py +216 -0
  2. daita/agents/__init__.py +33 -0
  3. daita/agents/base.py +743 -0
  4. daita/agents/substrate.py +1141 -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 +481 -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 +779 -0
  32. daita/core/reliability.py +381 -0
  33. daita/core/scaling.py +459 -0
  34. daita/core/tools.py +554 -0
  35. daita/core/tracing.py +770 -0
  36. daita/core/workflow.py +1144 -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 +291 -0
  45. daita/llm/base.py +530 -0
  46. daita/llm/factory.py +101 -0
  47. daita/llm/gemini.py +355 -0
  48. daita/llm/grok.py +219 -0
  49. daita/llm/mock.py +172 -0
  50. daita/llm/openai.py +220 -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 +849 -0
  55. daita/plugins/mcp.py +481 -0
  56. daita/plugins/mongodb.py +520 -0
  57. daita/plugins/mysql.py +362 -0
  58. daita/plugins/postgresql.py +342 -0
  59. daita/plugins/redis_messaging.py +500 -0
  60. daita/plugins/rest.py +537 -0
  61. daita/plugins/s3.py +770 -0
  62. daita/plugins/slack.py +729 -0
  63. daita/utils/__init__.py +18 -0
  64. daita_agents-0.2.0.dist-info/METADATA +409 -0
  65. daita_agents-0.2.0.dist-info/RECORD +69 -0
  66. daita_agents-0.2.0.dist-info/WHEEL +5 -0
  67. daita_agents-0.2.0.dist-info/entry_points.txt +2 -0
  68. daita_agents-0.2.0.dist-info/licenses/LICENSE +56 -0
  69. daita_agents-0.2.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,409 @@
1
+ Metadata-Version: 2.4
2
+ Name: daita-agents
3
+ Version: 0.2.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
214
+
215
+ # Create agent with simple configuration
216
+ agent = SubstrateAgent(
217
+ name="Data Analyst",
218
+ model="gpt-4o-mini",
219
+ prompt="You are a data analyst. Help users analyze and interpret data."
220
+ )
221
+
222
+ # Start and run agent
223
+ await agent.start()
224
+
225
+ # Simple execution - just get the answer
226
+ answer = await agent.run("Analyze sales trends from last quarter")
227
+ print(answer)
228
+
229
+ # Detailed execution - get full metadata
230
+ result = await agent.run_detailed("What are the key insights?")
231
+ print(f"Answer: {result['result']}")
232
+ print(f"Cost: ${result['cost']:.4f}")
233
+ print(f"Time: {result['processing_time_ms']}ms")
234
+ ```
235
+
236
+ ### Agent with Tools
237
+ ```python
238
+ from daita import SubstrateAgent
239
+ from daita.core.tools import tool
240
+
241
+ # Define tools for your agent
242
+ @tool
243
+ async def query_database(sql: str) -> list:
244
+ '''Execute SQL query and return results.'''
245
+ return await db.execute(sql)
246
+
247
+ @tool
248
+ async def calculate_metrics(data: list) -> dict:
249
+ '''Calculate statistical metrics for data.'''
250
+ return {
251
+ 'mean': sum(data) / len(data),
252
+ 'max': max(data),
253
+ 'min': min(data)
254
+ }
255
+
256
+ # Create agent and register tools
257
+ agent = SubstrateAgent(
258
+ name="Data Analyst",
259
+ model="gpt-4o-mini",
260
+ prompt="You are a data analyst with database access."
261
+ )
262
+ agent.register_tool(query_database)
263
+ agent.register_tool(calculate_metrics)
264
+
265
+ await agent.start()
266
+
267
+ # Agent autonomously decides which tools to use
268
+ answer = await agent.run("What were total sales last month?")
269
+ print(answer)
270
+ ```
271
+
272
+ ### Multi-Agent Workflow
273
+ ```python
274
+ from daita import Workflow, BaseAgent
275
+
276
+ # Create workflow with multiple agents
277
+ workflow = Workflow()
278
+ workflow.connect(data_agent, "processed_data", analysis_agent)
279
+ workflow.connect(analysis_agent, "insights", report_agent)
280
+
281
+ # Execute workflow
282
+ results = await workflow.run(input_data)
283
+ ```
284
+
285
+ ### CLI Commands
286
+ ```bash
287
+ # Initialize new project
288
+ daita init my-project
289
+
290
+ # Create components
291
+ daita create agent my-agent
292
+ daita create workflow data-pipeline
293
+
294
+ # Test and deploy
295
+ daita test --watch
296
+ daita push production
297
+ ```
298
+
299
+ ## Architecture
300
+
301
+ ### Core Components
302
+ - **Agents**: Intelligent processing units with LLM integration
303
+ - **Workflows**: Orchestrate multiple agents with communication channels
304
+ - **Plugins**: Extensible integrations for databases and APIs
305
+ - **Tracing**: Automatic observability for debugging and monitoring
306
+ - **Reliability**: Production-grade error handling and retry logic
307
+
308
+ ### Automatic Tracing
309
+ All operations are automatically traced:
310
+ - Agent lifecycle and decisions
311
+ - LLM calls with token usage and costs
312
+ - Plugin/tool executions
313
+ - Workflow communication
314
+ - Error handling and retries
315
+
316
+ ## Examples
317
+
318
+ ### Database Integration
319
+ ```python
320
+ from daita import SubstrateAgent
321
+ from daita.plugins import postgresql
322
+
323
+ # Create database plugin (provides query tool)
324
+ db = postgresql(
325
+ host="localhost",
326
+ database="mydb",
327
+ user="user",
328
+ password="pass"
329
+ )
330
+
331
+ # Create agent with database tools
332
+ agent = SubstrateAgent(
333
+ name="Database Analyst",
334
+ model="gpt-4o-mini",
335
+ tools=[db] # Automatically registers database query tools
336
+ )
337
+
338
+ await agent.start()
339
+
340
+ # Agent can autonomously query database
341
+ answer = await agent.run("Show me all active users from the database")
342
+ print(answer)
343
+ ```
344
+
345
+ ### Decision Tracing
346
+ ```python
347
+ from daita import record_decision_point
348
+
349
+ async def make_decision(data):
350
+ confidence = analyze_confidence(data)
351
+
352
+ # Trace decision reasoning
353
+ decision = record_decision_point(
354
+ decision_type="classification",
355
+ confidence=confidence,
356
+ reasoning="Based on data patterns..."
357
+ )
358
+
359
+ return decision
360
+ ```
361
+
362
+ ## Authentication & Deployment
363
+
364
+ ### API Key Setup
365
+ ```bash
366
+ export DAITA_API_KEY="your-api-key"
367
+ export OPENAI_API_KEY="your-openai-key"
368
+ ```
369
+
370
+ ### Cloud Deployment
371
+ ```bash
372
+ # Deploy to managed infrastructure
373
+ daita push production
374
+
375
+ # Monitor deployments
376
+ daita logs production
377
+ daita status
378
+ ```
379
+
380
+ ## Documentation
381
+
382
+ - **[Getting Started Guide](https://docs.daita-tech.io/getting-started)**
383
+ - **[API Reference](https://docs.daita-tech.io/api)**
384
+ - **[Plugin Development](https://docs.daita-tech.io/plugins)**
385
+ - **[Enterprise Features](https://docs.daita-tech.io/enterprise)**
386
+
387
+ ## Commercial Licensing
388
+
389
+ Daita Agents is commercial software with a generous free tier:
390
+
391
+ - **Free**: Core SDK, basic plugins, community support
392
+ - **Premium**: Enterprise features, advanced scaling, priority support
393
+ - **Enterprise**: Custom integrations, dedicated support, SLA
394
+
395
+ [Contact Sales](https://daita-tech.io/contact/sales) for premium features and enterprise licensing.
396
+
397
+ ## Support
398
+
399
+ - **Documentation**: [docs.daita-technologies.com](https://docs.daita-tech.io)
400
+ - **Commercial Support**: [support@daita-tech.io](mailto:support@daita-tech.io)
401
+
402
+ ## Links
403
+
404
+ - **Homepage**: [daita-tech.io](https://daita-tech.io)
405
+ - **PyPI Package**: [pypi.org/project/daita-agents](https://pypi.org/project/daita-agents/)
406
+
407
+ ---
408
+
409
+ *Built for production AI agent systems. Start free, scale with premium features.*
@@ -0,0 +1,69 @@
1
+ daita/__init__.py,sha256=lUS1arT-oYSdFMgPHMqa472GTM4DO-vXHV94BHQXdFM,5869
2
+ daita/agents/__init__.py,sha256=jd3c2GF_SUOPILRdEFafzdsHtzu5O-V8-CBls-LRE5U,985
3
+ daita/agents/base.py,sha256=l_LGHGxag3cgd55toov39wWCMX1a8uMiZPBsy3YupkA,28554
4
+ daita/agents/substrate.py,sha256=HGFL1mGjThD7TS--aRwU45PIeMmlZ9bTp-VeMYgem7I,39876
5
+ daita/cli/__init__.py,sha256=w3Uj21mJiUlkbvnl0vcAYzYTCi1BGaUQr0hcfUIiEQQ,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=cOZaJQQIoLhaBfG6JaQSFNphq2SYXWitSwySfBOXGHA,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=qNqMlEPKEmdO6npIfTHA61vd0EuR-CwwP1dNKPElqa4,13332
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=gyC-EMigflga4cfhvqlNhbBjxf0Yg8009xbfIjpsy9I,1941
30
+ daita/core/plugin_tracing.py,sha256=VSA_G99Vjy7CTCPl19UteW1Bbrepd4LcDGGkvRbMiQA,18903
31
+ daita/core/relay.py,sha256=SoTYcjOSpLGO7DOj2IiJCnvx2FuLNUlpjl2Hz1whUrk,29545
32
+ daita/core/reliability.py,sha256=hCJEo0pKR4QWtOIyXgiBXGvnvWGu4u5hDG3jnGSOXOA,13445
33
+ daita/core/scaling.py,sha256=63fV4u0RsxiP1fE_2WnyzuimuSWrQC8_s4SVcjqweQ4,16586
34
+ daita/core/tools.py,sha256=juVEwMEvmGCsmFMmGKkQQ04ILk0fKpRBZ43mJioE8qo,16592
35
+ daita/core/tracing.py,sha256=eKkZtUkxaRYT6k33QLN4xOc3yPuzNFCulZbU0FrAZvU,29226
36
+ daita/core/workflow.py,sha256=nJhgLVULSoq-vdPxldAJnBZ_t0oHf3ktl5y5_KM7B4Y,46766
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=IGTdKoo3MR5h-yluKtCC0GRNV3_U0yLd7Bv8JcpOkzg,10185
45
+ daita/llm/base.py,sha256=VpAfNhEvNKSBjDO78OVwEioMfRxVNjjgvM1su2NdRzE,18528
46
+ daita/llm/factory.py,sha256=FZAxNYFrOjs7FRDIhhBtEtkuQ0AVqMXsmZlQB5VNi3o,3230
47
+ daita/llm/gemini.py,sha256=lVkCBg0dzf5ezBfg0OY1VSWKLqH1DjMFNzQwUHAXeIE,13412
48
+ daita/llm/grok.py,sha256=ICqgMo0MKHTwVVQw6kS2HzXyMHJTndVn0ibmLM51PAA,7431
49
+ daita/llm/mock.py,sha256=cHuaC3cIhStGbvD9STG0TMtTDL6n7OF-BmBdMXRpkpA,5678
50
+ daita/llm/openai.py,sha256=NyFByqMn8JExWyEHJNuq_g00n5gOVx5A7EFSPAecqrw,7484
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=9pJ1Np4JoOj-dzRTBgghM1n9jkF1cqZCguee8VGwitc,29185
55
+ daita/plugins/mcp.py,sha256=d8giYEaTtL7ZBSuKFNXFw_6OCPXE97yJaVeaWV_U-WM,16121
56
+ daita/plugins/mongodb.py,sha256=zG0RPlnL2VP9B9g8v_nLOiEqcyoR1oLeBNMq8dLKmac,17996
57
+ daita/plugins/mysql.py,sha256=qBXeUEeJevuDD68QiI3kBNcfSsVZ2p7r0-ylox84Rl8,12147
58
+ daita/plugins/postgresql.py,sha256=-6MmUgFu-AUIurwFWduQDPKsuRpV986FsN8e1sS1S7s,11718
59
+ daita/plugins/redis_messaging.py,sha256=S-tyuIZ0F0MBHE6ltY0uowKtOS4qM9rBY-uqWHxvLXM,17072
60
+ daita/plugins/rest.py,sha256=QARMmqB5Tygqqf8aWpECr9cK3OY8EwGwbnfVcbGotVg,17665
61
+ daita/plugins/s3.py,sha256=TwBnFkx458mubhpeC9-_r-Vxzt8dZTvdluOr9qzL74I,26993
62
+ daita/plugins/slack.py,sha256=K-9CGjOh0ub0aFK7rEzS0jeXYD-NSHKPxB1ajL1jgBM,25431
63
+ daita/utils/__init__.py,sha256=Qsn3SJQaiOXGdi1kpmQoG9eKGwILPzwLu715jPfdHAQ,703
64
+ daita_agents-0.2.0.dist-info/licenses/LICENSE,sha256=Q8Tqw4_-KZ1vbI-bjQr18DqGp-vVsPfYy3W5hji2Gvc,2355
65
+ daita_agents-0.2.0.dist-info/METADATA,sha256=Nb1IegomF1yu37N55CfNz7_mjAnkErVUknjGzNqtHJ4,13725
66
+ daita_agents-0.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
67
+ daita_agents-0.2.0.dist-info/entry_points.txt,sha256=zoXkr0vtmch03AzMgESqBtHB0cQIVQuNXz2jLJsyjmk,46
68
+ daita_agents-0.2.0.dist-info/top_level.txt,sha256=a5PxeG_miSR4662lb7kGqvTEl0IDicKmbuiJ_aCIhe0,6
69
+ daita_agents-0.2.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