You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Symbi** is an AI-native agent framework for building autonomous, policy-aware agents that can safely collaborate with humans, other agents, and large language models. The Community edition provides core functionality with optional Enterprise features for advanced security, monitoring, and collaboration.
5
+
**Symbi** is an AI-native agent framework for building autonomous, policy-aware agents that can safely collaborate with humans, other agents, and large language models.
6
6
7
7
## 🚀 Quick Start
8
8
@@ -66,10 +66,19 @@ symbi-runtime = { version = "0.1.2", features = ["http-api"] }
66
66
67
67
**Key Endpoints:**
68
68
- `GET /api/v1/health` - Health check and system status
69
-
- `GET /api/v1/agents` - List all active agents
69
+
- `GET /api/v1/agents` - List all active agents (requires authentication)
70
+
- `GET /api/v1/agents/{id}/status` - Get specific agent status (requires authentication)
71
+
- `POST /api/v1/agents` - Create a new agent (requires authentication)
72
+
- `PUT /api/v1/agents/{id}` - Update an agent (requires authentication)
73
+
- `DELETE /api/v1/agents/{id}` - Delete an agent (requires authentication)
74
+
- `POST /api/v1/agents/{id}/execute` - Execute an agent (requires authentication)
75
+
- `GET /api/v1/agents/{id}/history` - Get agent execution history (requires authentication)
0 commit comments