agentomatic 0.7.0__tar.gz → 0.8.0__tar.gz

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 (161) hide show
  1. {agentomatic-0.7.0 → agentomatic-0.8.0}/PKG-INFO +15 -16
  2. {agentomatic-0.7.0 → agentomatic-0.8.0}/README.md +14 -15
  3. {agentomatic-0.7.0 → agentomatic-0.8.0}/pyproject.toml +17 -1
  4. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/_version.py +1 -1
  5. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/cli/commands.py +293 -98
  6. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/cli/templates.py +486 -1
  7. {agentomatic-0.7.0 → agentomatic-0.8.0}/LICENSE +0 -0
  8. {agentomatic-0.7.0 → agentomatic-0.8.0}/examples/full_agent/README.md +0 -0
  9. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/__init__.py +0 -0
  10. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/__init__.py +0 -0
  11. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/base.py +0 -0
  12. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/builder.py +0 -0
  13. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/decorators.py +0 -0
  14. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/graph.py +0 -0
  15. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/metrics.py +0 -0
  16. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/mixins/__init__.py +0 -0
  17. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/mixins/dataset.py +0 -0
  18. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/mixins/evaluation.py +0 -0
  19. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/mixins/graph_execution.py +0 -0
  20. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/mixins/observability.py +0 -0
  21. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/mixins/optimization.py +0 -0
  22. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/mixins/serialization.py +0 -0
  23. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/optimizers.py +0 -0
  24. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/agents/types.py +0 -0
  25. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/cli/__init__.py +0 -0
  26. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/config/__init__.py +0 -0
  27. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/config/defaults.py +0 -0
  28. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/config/settings.py +0 -0
  29. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/core/__init__.py +0 -0
  30. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/core/lifespan.py +0 -0
  31. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/core/manifest.py +0 -0
  32. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/core/memory_manager.py +0 -0
  33. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/core/platform.py +0 -0
  34. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/core/registry.py +0 -0
  35. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/core/router_factory.py +0 -0
  36. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/core/schemas.py +0 -0
  37. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/core/state.py +0 -0
  38. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/delegation/__init__.py +0 -0
  39. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/delegation/handoff.py +0 -0
  40. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/delegation/swarm.py +0 -0
  41. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/demo/__init__.py +0 -0
  42. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/demo/agent.py +0 -0
  43. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/demo/server.py +0 -0
  44. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/middleware/__init__.py +0 -0
  45. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/middleware/auth.py +0 -0
  46. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/middleware/feedback.py +0 -0
  47. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/middleware/logging.py +0 -0
  48. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/middleware/metrics.py +0 -0
  49. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/middleware/rate_limit.py +0 -0
  50. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/observability/__init__.py +0 -0
  51. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/observability/concurrency.py +0 -0
  52. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/observability/metrics.py +0 -0
  53. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/observability/telemetry.py +0 -0
  54. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/__init__.py +0 -0
  55. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/config.py +0 -0
  56. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/context.py +0 -0
  57. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/dashboard.py +0 -0
  58. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/dataset.py +0 -0
  59. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/deployment.py +0 -0
  60. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/eval_contract.py +0 -0
  61. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/events.py +0 -0
  62. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/failure_analysis.py +0 -0
  63. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/fitter.py +0 -0
  64. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/fitter_optimizers.py +0 -0
  65. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/judges.py +0 -0
  66. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/llm_caller.py +0 -0
  67. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/loop.py +0 -0
  68. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/metrics.py +0 -0
  69. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/optimizer.py +0 -0
  70. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/progress.py +0 -0
  71. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/report.py +0 -0
  72. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/runner.py +0 -0
  73. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/search_space.py +0 -0
  74. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/strategies.py +0 -0
  75. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/optimize/synthesizer.py +0 -0
  76. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/pipelines/__init__.py +0 -0
  77. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/pipelines/builder.py +0 -0
  78. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/pipelines/context.py +0 -0
  79. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/pipelines/engine.py +0 -0
  80. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/pipelines/flow.py +0 -0
  81. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/pipelines/loader.py +0 -0
  82. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/pipelines/models.py +0 -0
  83. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/pipelines/router.py +0 -0
  84. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/pipelines/steps.py +0 -0
  85. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/plugins/__init__.py +0 -0
  86. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/plugins/ml.py +0 -0
  87. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/plugins/registry.py +0 -0
  88. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/plugins/router.py +0 -0
  89. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/prompts/__init__.py +0 -0
  90. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/prompts/manager.py +0 -0
  91. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/protocols/__init__.py +0 -0
  92. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/protocols/decorators.py +0 -0
  93. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/providers/__init__.py +0 -0
  94. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/providers/embeddings.py +0 -0
  95. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/providers/llm.py +0 -0
  96. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/py.typed +0 -0
  97. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/security/__init__.py +0 -0
  98. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/security/jwt_auth.py +0 -0
  99. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/security/policy.py +0 -0
  100. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/security/zero_trust.py +0 -0
  101. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/stacks/__init__.py +0 -0
  102. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/stacks/defaults.py +0 -0
  103. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/stacks/manager.py +0 -0
  104. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/storage/__init__.py +0 -0
  105. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/storage/base.py +0 -0
  106. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/storage/checkpointer.py +0 -0
  107. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/storage/memory.py +0 -0
  108. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/storage/models.py +0 -0
  109. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/storage/sqlalchemy.py +0 -0
  110. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/__init__.py +0 -0
  111. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/adapter.py +0 -0
  112. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/adapters/__init__.py +0 -0
  113. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/adapters/generic.py +0 -0
  114. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/adapters/graph_agent.py +0 -0
  115. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/adapters/langchain.py +0 -0
  116. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/adapters/langgraph.py +0 -0
  117. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/decorators.py +0 -0
  118. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/graph_inspector.py +0 -0
  119. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/models.py +0 -0
  120. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/router.py +0 -0
  121. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/run_tracker.py +0 -0
  122. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/serve.py +0 -0
  123. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/asset-manifest.json +0 -0
  124. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/imgs/graph_view.png +0 -0
  125. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/imgs/logo.png +0 -0
  126. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/imgs/main_screen.png +0 -0
  127. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/imgs/main_screen_ok.png +0 -0
  128. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/index.html +0 -0
  129. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/manifest.json +0 -0
  130. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/static/css/main.8b3c42dd.css +0 -0
  131. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/static/css/main.8b3c42dd.css.map +0 -0
  132. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/static/js/main.cbb2a8ee.js +0 -0
  133. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/static/js/main.cbb2a8ee.js.LICENSE.txt +0 -0
  134. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/studio/static/static/js/main.cbb2a8ee.js.map +0 -0
  135. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/ui/__init__.py +0 -0
  136. {agentomatic-0.7.0 → agentomatic-0.8.0}/src/agentomatic/ui/chat.py +0 -0
  137. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_agent_dataset.py +0 -0
  138. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_agent_graph.py +0 -0
  139. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_agent_graph_stream.py +0 -0
  140. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_agent_metrics.py +0 -0
  141. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_agentomatic.py +0 -0
  142. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_base_graph_agent.py +0 -0
  143. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_bugfixes_041.py +0 -0
  144. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_cli.py +0 -0
  145. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_coverage_boost.py +0 -0
  146. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_deep_agent.py +0 -0
  147. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_delegation.py +0 -0
  148. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_fitter.py +0 -0
  149. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_flow.py +0 -0
  150. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_integration.py +0 -0
  151. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_optimize.py +0 -0
  152. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_optimizer_dashboard.py +0 -0
  153. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_optimizer_events.py +0 -0
  154. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_optimizer_progress.py +0 -0
  155. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_pipelines.py +0 -0
  156. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_platform_features.py +0 -0
  157. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_plugins.py +0 -0
  158. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_security.py +0 -0
  159. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_stacks.py +0 -0
  160. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_studio.py +0 -0
  161. {agentomatic-0.7.0 → agentomatic-0.8.0}/tests/test_v06_core.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentomatic
3
- Version: 0.7.0
3
+ Version: 0.8.0
4
4
  Summary: Drop agents, not code — zero-code multi-agent API platform framework
5
5
  Project-URL: Homepage, https://github.com/UnicoLab/agentomatic
6
6
  Project-URL: Documentation, https://unicolab.github.io/agentomatic
@@ -145,11 +145,11 @@ Build, trace, optimize, and time-travel debug production-ready AI agent APIs in
145
145
  |---|---|
146
146
  | 🎯 **Agentomatic Studio** | Embedded visual agent debugger with graph rendering, live SSE node streaming, state mutation, and historical time-travel capabilities. |
147
147
  | ⚡ **Prompt Optimizer** | Enterprise-grade prompt and configuration fitting utilizing 5 distinct optimizers with deployment recommendations. |
148
- | 🔍 **Zero-Code Auto-Discovery** | Drop an agent folder → 25+ fully-documented REST endpoints appear automatically. |
148
+ | 🔍 **Zero-Code Auto-Discovery** | Drop an agent folder → 26 fully-documented REST endpoints appear automatically. |
149
149
  | 🚀 **Rich API Surface** | Natively handles `invoke`, `stream`, `chat`, `A2A`, `health`, `config`, `threads`, `memory`, and `feedback`. |
150
150
  | 🗄️ **Pluggable Storage** | Use `MemoryStore`, `SQLAlchemy`, or plug in your own custom persistence layer. |
151
151
  | 🔐 **Enterprise Middleware** | High-performance pipeline with JWT Auth, dynamic rate limiting, and Prometheus telemetry — all toggleable. |
152
- | 📦 **Scaffolding Templates** | Jumpstart development with 9 templates: `basic`, `full`, `rag`, `chatbot`, `deepagent`, `custom`, `swarm`, `pipeline`, `class`. |
152
+ | 📦 **Scaffolding Templates** | Jumpstart development with 8 templates: `basic`, `full`, `rag`, `chatbot`, `deepagent`, `custom`, `legacy_dict`, `plugin`. |
153
153
  | 🧬 **Class-Based Agents** | Define agents as Python classes with ML lifecycle: `compile()` → `fit()` → `evaluate()` → `transform()`. |
154
154
  | 🤖 **A2A Protocol** | True Agent-to-Agent communication flows integrated out of the box. |
155
155
  | 🔌 **Framework Agnostic** | Fully supports LangGraph, LangChain, or raw Python execution logic. |
@@ -250,17 +250,16 @@ agents/my_agent/
250
250
  agentomatic init my_agent --template <template>
251
251
  ```
252
252
 
253
- | Template | Files | Description |
254
- |----------|-------|-------------|
255
- | `basic` | 7 | Minimal agent — quick start |
256
- | `full` | 11 | All override files — config, schemas, api, tools |
257
- | `rag` | 9 | RetrieveGenerate pipeline |
258
- | `chatbot` | 8 | Conversational with memory |
259
- | `deepagent` | 6 | Autonomous planning with sub-agents |
260
- | `custom` | 4 | Framework-agnostic — no LangGraph |
261
- | `swarm` | 10+ | Multi-agent delegation and handoffs |
262
- | `pipeline` | 2 | Multi-agent workflow composition (YAML) |
263
- | `class` | 4 | **NEW** Python class with ML lifecycle |
253
+ | Template | Description |
254
+ |----------|-------------|
255
+ | `basic` | Minimal class-based agent (recommended) — quick start |
256
+ | `full` | All override files — class agent with config, schemas, api, tools, prompts |
257
+ | `rag` | RAG class-based agent — retrieve generate pipeline |
258
+ | `chatbot` | Conversational class-based agent with memory |
259
+ | `deepagent` | Deep Agent planning, tools, subagents (requires deepagents package) |
260
+ | `custom` | Framework-agnostic — no LangGraph dependency |
261
+ | `legacy_dict` | Legacy functional agent 3 files (`__init__`, graph, nodes) |
262
+ | `plugin` | ML Model Plugin wrap classical ML models with REST endpoints |
264
263
 
265
264
  ## 🖥️ CLI
266
265
 
@@ -283,7 +282,7 @@ agentomatic init my_agent --template <template>
283
282
 
284
283
  ## 🧬 Class-Based Agents (NEW)
285
284
 
286
- Define agents as Python classes with LangGraph-style graph wiring and ML lifecycle:
285
+ Define agents as Python classes with built-in graph wiring and ML lifecycle:
287
286
 
288
287
  ```python
289
288
  from dataclasses import dataclass, field
@@ -330,7 +329,7 @@ agent.save("compiled/v1")
330
329
 
331
330
  ## 🎨 Agentomatic Studio
332
331
 
333
- Agentomatic ships with a built-in React-based visual studio designed for time-travel debugging, real-time node streaming, and state inspection for all underlying LangGraph agents.
332
+ Agentomatic ships with a built-in React-based visual studio designed for time-travel debugging, real-time node streaming, and state inspection. Works with class-based agents, LangGraph, LangChain, and any custom framework via the adapter system.
334
333
 
335
334
  To use the studio, install the optional package dependencies and run with the `--studio` flag:
336
335
 
@@ -29,11 +29,11 @@ Build, trace, optimize, and time-travel debug production-ready AI agent APIs in
29
29
  |---|---|
30
30
  | 🎯 **Agentomatic Studio** | Embedded visual agent debugger with graph rendering, live SSE node streaming, state mutation, and historical time-travel capabilities. |
31
31
  | ⚡ **Prompt Optimizer** | Enterprise-grade prompt and configuration fitting utilizing 5 distinct optimizers with deployment recommendations. |
32
- | 🔍 **Zero-Code Auto-Discovery** | Drop an agent folder → 25+ fully-documented REST endpoints appear automatically. |
32
+ | 🔍 **Zero-Code Auto-Discovery** | Drop an agent folder → 26 fully-documented REST endpoints appear automatically. |
33
33
  | 🚀 **Rich API Surface** | Natively handles `invoke`, `stream`, `chat`, `A2A`, `health`, `config`, `threads`, `memory`, and `feedback`. |
34
34
  | 🗄️ **Pluggable Storage** | Use `MemoryStore`, `SQLAlchemy`, or plug in your own custom persistence layer. |
35
35
  | 🔐 **Enterprise Middleware** | High-performance pipeline with JWT Auth, dynamic rate limiting, and Prometheus telemetry — all toggleable. |
36
- | 📦 **Scaffolding Templates** | Jumpstart development with 9 templates: `basic`, `full`, `rag`, `chatbot`, `deepagent`, `custom`, `swarm`, `pipeline`, `class`. |
36
+ | 📦 **Scaffolding Templates** | Jumpstart development with 8 templates: `basic`, `full`, `rag`, `chatbot`, `deepagent`, `custom`, `legacy_dict`, `plugin`. |
37
37
  | 🧬 **Class-Based Agents** | Define agents as Python classes with ML lifecycle: `compile()` → `fit()` → `evaluate()` → `transform()`. |
38
38
  | 🤖 **A2A Protocol** | True Agent-to-Agent communication flows integrated out of the box. |
39
39
  | 🔌 **Framework Agnostic** | Fully supports LangGraph, LangChain, or raw Python execution logic. |
@@ -134,17 +134,16 @@ agents/my_agent/
134
134
  agentomatic init my_agent --template <template>
135
135
  ```
136
136
 
137
- | Template | Files | Description |
138
- |----------|-------|-------------|
139
- | `basic` | 7 | Minimal agent — quick start |
140
- | `full` | 11 | All override files — config, schemas, api, tools |
141
- | `rag` | 9 | RetrieveGenerate pipeline |
142
- | `chatbot` | 8 | Conversational with memory |
143
- | `deepagent` | 6 | Autonomous planning with sub-agents |
144
- | `custom` | 4 | Framework-agnostic — no LangGraph |
145
- | `swarm` | 10+ | Multi-agent delegation and handoffs |
146
- | `pipeline` | 2 | Multi-agent workflow composition (YAML) |
147
- | `class` | 4 | **NEW** Python class with ML lifecycle |
137
+ | Template | Description |
138
+ |----------|-------------|
139
+ | `basic` | Minimal class-based agent (recommended) — quick start |
140
+ | `full` | All override files — class agent with config, schemas, api, tools, prompts |
141
+ | `rag` | RAG class-based agent — retrieve generate pipeline |
142
+ | `chatbot` | Conversational class-based agent with memory |
143
+ | `deepagent` | Deep Agent planning, tools, subagents (requires deepagents package) |
144
+ | `custom` | Framework-agnostic — no LangGraph dependency |
145
+ | `legacy_dict` | Legacy functional agent 3 files (`__init__`, graph, nodes) |
146
+ | `plugin` | ML Model Plugin wrap classical ML models with REST endpoints |
148
147
 
149
148
  ## 🖥️ CLI
150
149
 
@@ -167,7 +166,7 @@ agentomatic init my_agent --template <template>
167
166
 
168
167
  ## 🧬 Class-Based Agents (NEW)
169
168
 
170
- Define agents as Python classes with LangGraph-style graph wiring and ML lifecycle:
169
+ Define agents as Python classes with built-in graph wiring and ML lifecycle:
171
170
 
172
171
  ```python
173
172
  from dataclasses import dataclass, field
@@ -214,7 +213,7 @@ agent.save("compiled/v1")
214
213
 
215
214
  ## 🎨 Agentomatic Studio
216
215
 
217
- Agentomatic ships with a built-in React-based visual studio designed for time-travel debugging, real-time node streaming, and state inspection for all underlying LangGraph agents.
216
+ Agentomatic ships with a built-in React-based visual studio designed for time-travel debugging, real-time node streaming, and state inspection. Works with class-based agents, LangGraph, LangChain, and any custom framework via the adapter system.
218
217
 
219
218
  To use the studio, install the optional package dependencies and run with the `--studio` flag:
220
219
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "agentomatic"
3
- version = "0.7.0"
3
+ version = "0.8.0"
4
4
  description = "Drop agents, not code — zero-code multi-agent API platform framework"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -90,6 +90,7 @@ Changelog = "https://github.com/UnicoLab/agentomatic/blob/main/CHANGELOG.md"
90
90
 
91
91
 
92
92
 
93
+
93
94
  [dependency-groups]
94
95
  dev = [
95
96
  "pytest>=8",
@@ -217,5 +218,20 @@ module = [
217
218
  "agentomatic.studio.run_tracker",
218
219
  "agentomatic.demo.*",
219
220
  "agentomatic.optimize.*",
221
+ "agentomatic.providers.*",
220
222
  ]
221
223
  disable_error_code = ["call-arg", "override", "misc", "attr-defined"]
224
+
225
+ # Optional dependencies that may not be installed
226
+ [[tool.mypy.overrides]]
227
+ module = [
228
+ "chainlit",
229
+ "chainlit.*",
230
+ "litellm",
231
+ "opentelemetry.*",
232
+ "langchain_openai",
233
+ "langchain_google_vertexai",
234
+ "holysheet",
235
+ "yaml",
236
+ ]
237
+ ignore_missing_imports = true
@@ -2,4 +2,4 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- __version__ = "0.7.0"
5
+ __version__ = "0.8.0"