https://github.com/mk-knight23/ai-sdk-autogen
Collaborative multi-agent conversations for coordinated execution
https://github.com/mk-knight23/ai-sdk-autogen
autogen conversation coordination multi-agent python
Last synced: 3 months ago
JSON representation
Collaborative multi-agent conversations for coordinated execution
- Host: GitHub
- URL: https://github.com/mk-knight23/ai-sdk-autogen
- Owner: mk-knight23
- Created: 2026-02-20T06:49:15.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-20T18:10:18.000Z (3 months ago)
- Last Synced: 2026-03-21T08:58:25.682Z (3 months ago)
- Topics: autogen, conversation, coordination, multi-agent, python
- Language: Python
- Homepage: https://kazi-sdk-autogen.web.app
- Size: 10.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# autogen Adapter
## CLI Run
```bash
python runner.py --mission "your mission"
```
## API Run
```bash
uvicorn api:app --host 0.0.0.0 --port 8000
```
## Health Check
```bash
curl http://localhost:8000/health
```
## Mission Invoke
```bash
curl -X POST http://localhost:8000/run \
-H "content-type: application/json" \
-d '{"mission":"build secure api and deploy"}'
```
## Install
```bash
pip install -r requirements.txt
```
## Deploy
- Build Docker image from included Dockerfile.
- Provide secrets via environment variables.