https://github.com/mk-knight23/ai-sdk-langchain
Orchestration-focused chain composition for enterprise workflows
https://github.com/mk-knight23/ai-sdk-langchain
agents enterprise-ai fastapi langchain python workflow-orchestration
Last synced: 3 months ago
JSON representation
Orchestration-focused chain composition for enterprise workflows
- Host: GitHub
- URL: https://github.com/mk-knight23/ai-sdk-langchain
- Owner: mk-knight23
- Created: 2026-02-20T06:49:07.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-20T18:10:35.000Z (3 months ago)
- Last Synced: 2026-03-21T08:58:41.078Z (3 months ago)
- Topics: agents, enterprise-ai, fastapi, langchain, python, workflow-orchestration
- Language: Python
- Homepage: https://kazi-sdk-langchain.web.app
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# langchain 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.