PYAE1994/openhands-genspark-agent
0
Onehands Autonomous AI Developer v12.0
Real autonomous AI developer platform — not just talk, it actually CODES, EXECUTES, and DEPLOYS.
✅ What Works
🔑 Required Secrets (HF Space Settings → Variables)
GEMINI_KEY=key1,key2,... # Google Gemini API keys
GITHUB_TOKEN=ghp_xxx # GitHub token (for LLM + GitHub ops)
SAMBANOVA_KEY=xxx # SambaNova API key
DATABASE_URL=postgresql://... # Supabase PostgreSQL
REDIS_URL=redis://... # Upstash Redis
E2B_API_KEY=e2b_xxx # E2B code execution sandbox
HF_TOKEN=hf_xxx # HuggingFace token
VERCEL_TOKEN=vcp_xxx # Vercel deploy token🚀 Quick Start
# Chat
curl -X POST https://pyae1994-openhands-genspark-agent.hf.space/chat \
-H "Content-Type: application/json" \
-d '{"message": "Hello!", "provider": "gemini"}'
# Run autonomous agent task
curl -X POST https://pyae1994-openhands-genspark-agent.hf.space/agent/task \
-H "Content-Type: application/json" \
-d '{"task": "Write and run a Python fibonacci function", "max_steps": 5}'
# Generate a full project
curl -X POST https://pyae1994-openhands-genspark-agent.hf.space/dev/workflow \
-H "Content-Type: application/json" \
-d '{"description": "REST API for todo list", "stack": "python-fastapi"}'