agentomatic 0.7.0__tar.gz → 0.9.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.
- {agentomatic-0.7.0 → agentomatic-0.9.0}/PKG-INFO +15 -16
- {agentomatic-0.7.0 → agentomatic-0.9.0}/README.md +14 -15
- {agentomatic-0.7.0 → agentomatic-0.9.0}/pyproject.toml +18 -1
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/_version.py +1 -1
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/cli/commands.py +339 -97
- agentomatic-0.9.0/src/agentomatic/cli/templates.py +1823 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/core/platform.py +14 -0
- agentomatic-0.7.0/src/agentomatic/cli/templates.py +0 -430
- {agentomatic-0.7.0 → agentomatic-0.9.0}/LICENSE +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/examples/full_agent/README.md +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/base.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/builder.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/decorators.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/graph.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/metrics.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/mixins/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/mixins/dataset.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/mixins/evaluation.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/mixins/graph_execution.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/mixins/observability.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/mixins/optimization.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/mixins/serialization.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/optimizers.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/agents/types.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/cli/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/config/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/config/defaults.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/config/settings.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/core/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/core/lifespan.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/core/manifest.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/core/memory_manager.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/core/registry.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/core/router_factory.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/core/schemas.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/core/state.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/delegation/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/delegation/handoff.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/delegation/swarm.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/demo/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/demo/agent.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/demo/server.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/middleware/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/middleware/auth.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/middleware/feedback.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/middleware/logging.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/middleware/metrics.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/middleware/rate_limit.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/observability/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/observability/concurrency.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/observability/metrics.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/observability/telemetry.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/config.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/context.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/dashboard.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/dataset.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/deployment.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/eval_contract.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/events.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/failure_analysis.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/fitter.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/fitter_optimizers.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/judges.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/llm_caller.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/loop.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/metrics.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/optimizer.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/progress.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/report.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/runner.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/search_space.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/strategies.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/optimize/synthesizer.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/pipelines/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/pipelines/builder.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/pipelines/context.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/pipelines/engine.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/pipelines/flow.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/pipelines/loader.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/pipelines/models.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/pipelines/router.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/pipelines/steps.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/plugins/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/plugins/ml.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/plugins/registry.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/plugins/router.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/prompts/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/prompts/manager.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/protocols/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/protocols/decorators.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/providers/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/providers/embeddings.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/providers/llm.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/py.typed +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/security/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/security/jwt_auth.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/security/policy.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/security/zero_trust.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/stacks/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/stacks/defaults.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/stacks/manager.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/storage/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/storage/base.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/storage/checkpointer.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/storage/memory.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/storage/models.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/storage/sqlalchemy.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/adapter.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/adapters/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/adapters/generic.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/adapters/graph_agent.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/adapters/langchain.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/adapters/langgraph.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/decorators.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/graph_inspector.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/models.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/router.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/run_tracker.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/serve.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/asset-manifest.json +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/imgs/graph_view.png +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/imgs/logo.png +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/imgs/main_screen.png +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/imgs/main_screen_ok.png +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/index.html +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/manifest.json +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/static/css/main.8b3c42dd.css +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/static/css/main.8b3c42dd.css.map +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/static/js/main.cbb2a8ee.js +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/static/js/main.cbb2a8ee.js.LICENSE.txt +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/studio/static/static/js/main.cbb2a8ee.js.map +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/ui/__init__.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/src/agentomatic/ui/chat.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_agent_dataset.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_agent_graph.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_agent_graph_stream.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_agent_metrics.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_agentomatic.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_base_graph_agent.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_bugfixes_041.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_cli.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_coverage_boost.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_deep_agent.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_delegation.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_fitter.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_flow.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_integration.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_optimize.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_optimizer_dashboard.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_optimizer_events.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_optimizer_progress.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_pipelines.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_platform_features.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_plugins.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_security.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_stacks.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.0}/tests/test_studio.py +0 -0
- {agentomatic-0.7.0 → agentomatic-0.9.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.
|
|
3
|
+
Version: 0.9.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 →
|
|
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
|
|
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 |
|
|
254
|
-
|
|
255
|
-
| `basic` |
|
|
256
|
-
| `full` |
|
|
257
|
-
| `rag` |
|
|
258
|
-
| `chatbot` |
|
|
259
|
-
| `deepagent` |
|
|
260
|
-
| `custom` |
|
|
261
|
-
| `
|
|
262
|
-
| `
|
|
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
|
|
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
|
|
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 →
|
|
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
|
|
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 |
|
|
138
|
-
|
|
139
|
-
| `basic` |
|
|
140
|
-
| `full` |
|
|
141
|
-
| `rag` |
|
|
142
|
-
| `chatbot` |
|
|
143
|
-
| `deepagent` |
|
|
144
|
-
| `custom` |
|
|
145
|
-
| `
|
|
146
|
-
| `
|
|
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
|
|
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
|
|
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.
|
|
3
|
+
version = "0.9.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,8 @@ Changelog = "https://github.com/UnicoLab/agentomatic/blob/main/CHANGELOG.md"
|
|
|
90
90
|
|
|
91
91
|
|
|
92
92
|
|
|
93
|
+
|
|
94
|
+
|
|
93
95
|
[dependency-groups]
|
|
94
96
|
dev = [
|
|
95
97
|
"pytest>=8",
|
|
@@ -217,5 +219,20 @@ module = [
|
|
|
217
219
|
"agentomatic.studio.run_tracker",
|
|
218
220
|
"agentomatic.demo.*",
|
|
219
221
|
"agentomatic.optimize.*",
|
|
222
|
+
"agentomatic.providers.*",
|
|
220
223
|
]
|
|
221
224
|
disable_error_code = ["call-arg", "override", "misc", "attr-defined"]
|
|
225
|
+
|
|
226
|
+
# Optional dependencies that may not be installed
|
|
227
|
+
[[tool.mypy.overrides]]
|
|
228
|
+
module = [
|
|
229
|
+
"chainlit",
|
|
230
|
+
"chainlit.*",
|
|
231
|
+
"litellm",
|
|
232
|
+
"opentelemetry.*",
|
|
233
|
+
"langchain_openai",
|
|
234
|
+
"langchain_google_vertexai",
|
|
235
|
+
"holysheet",
|
|
236
|
+
"yaml",
|
|
237
|
+
]
|
|
238
|
+
ignore_missing_imports = true
|