CoolFace
Apppublic

Parasuramane24/multi-model-agent-api

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
README.md23 linesDownload Raw Back to root
1---2title: Multi-Model Agent API3emoji: 🤖4colorFrom: blue5colorTo: purple6sdk: docker7app_port: 78608---9 10# Multi-Model Agent API11 12API serving 4 models on separate endpoints:13- `/model1`: Hammer2.1-0.5B (function calling)14- `/model2`: Qwen2.5-Coder-0.5B (code generation)15- `/model3`: limbic-tool-use-0.5B (tool evaluation)16- `/model4`: Fantail-mini (general purpose)17 18## Usage19 20```bash21curl -X POST https://YOUR_USERNAME-multi-model-api.hf.space/model1 \22  -H "Content-Type: application/json" \23  -d '{"prompt": "Write Python code for factorial"}'