mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 19:12:49 +00:00
- Disable FuzzForge MCP connection (no Prefect backend) - Add a2a_wrapper module for programmatic A2A agent tasks - Add task_agent (LiteLLM A2A agent) on port 10900 - Create volumes/env/ for centralized Docker config - Update docker-compose.yml with task-agent service - Remove workflow_automation_skill from agent card
25 lines
841 B
JSON
25 lines
841 B
JSON
{
|
|
"name": "litellm_agent",
|
|
"description": "A flexible AI agent powered by LiteLLM with hot-swappable models from OpenRouter and other providers",
|
|
"url": "http://localhost:8000",
|
|
"version": "1.0.0",
|
|
"defaultInputModes": ["text/plain"],
|
|
"defaultOutputModes": ["text/plain"],
|
|
"capabilities": {
|
|
"streaming": true
|
|
},
|
|
"skills": [
|
|
{
|
|
"id": "litellm-general-purpose",
|
|
"name": "General Purpose AI Assistant",
|
|
"description": "A flexible AI assistant that can help with various tasks using any LiteLLM-supported model. Supports runtime model and prompt hot-swapping.",
|
|
"tags": ["ai", "assistant", "litellm", "flexible", "hot-swap"],
|
|
"examples": [
|
|
"Help me write a Python function",
|
|
"Explain quantum computing",
|
|
"Switch to Claude model and help me code"
|
|
]
|
|
}
|
|
]
|
|
}
|