--- title: Autonomous AI emoji: 🤖 colorFrom: gray colorTo: green sdk: gradio sdk_version: "3.41.0" app_file: app.py pinned: false --- # Autonomous AI — Self-Improving Agent This is an autonomous AI system capable of learning, improving, and handling tasks via API, Webhooks, and a Client Portal. ## 🚀 Features - Self-upgrading agent loop - Multi-agent collaboration - Feedback storage + analytics dashboard - Webhook + portal UI - Scheduler & voice interface ## 🐳 Deploy with Docker ```bash docker build -t autonomous-ai . docker run -p 8000:8000 autonomous-ai ``` Visit: http://localhost:8000/portal ## 🌐 Manual Start (No Docker) ```bash pip install -r requirements.txt python -c "from storage import init_db; init_db()" uvicorn api:app --reload ``` ## 🛠 Endpoints - `/portal` - Task submission UI - `/dashboard` - Feedback/goal display - `/webhook` - POST task externally