series13/personal-agent
0
Sanjay's Personal AI Agent - CrewAI Backend
A FastAPI + CrewAI powered personal AI agent with specialist crews.
Agents
- Researcher — Web research using DuckDuckGo (free, no API key)
- Email Manager — Read & send Gmail on your behalf
Environment Variables (Set in HF Spaces Secrets)
API Endpoints
GET /— Health checkGET /health— Ping (used for keep-alive)POST /execute— Run an agent crew
Example Request
POST /execute
Headers: x-agent-secret: your_secret_here
{
"command": "Find top 5 AI hackathons happening this month",
"crew_type": "researcher",
"extra": {}
}Email Example
{
"command": "Send a follow up email",
"crew_type": "email_manager",
"extra": {
"action": "send",
"to": "someone@gmail.com",
"subject": "Follow Up",
"body": "Hi, just following up on our conversation..."
}
}