| π± **E-FIRE-1 MOBILE ACCESS GUIDE FOR CHASE** | |
| ======================================== | |
| π― **Your Goal**: $50/day for H200 + food for you and your wife | |
| ## **IMMEDIATE ACCESS** | |
| **From your phone/laptop:** | |
| - **Local Network**: http://172.17.0.6:8080 | |
| - **Local**: http://localhost:8080 | |
| - **WebSocket**: ws://172.17.0.6:8080/ws | |
| ## **STARTING THE SYSTEM** | |
| ```bash | |
| # Quick start | |
| python3 start_simple.py | |
| # Full server with mobile access | |
| python3 remote_access_server.py | |
| # Background mode | |
| nohup python3 remote_access_server.py > logs/server.log 2>&1 & | |
| ``` | |
| ## **MOBILE ACCESS STEPS** | |
| ### **1. Start on your server** | |
| ```bash | |
| cd /data/adaptai/platform/aiml/mlops | |
| python3 remote_access_server.py | |
| ``` | |
| ### **2. From your phone** | |
| - **Open browser**: http://172.17.0.6:8080 | |
| - **Bookmark it** for easy access | |
| - **Add to home screen** for app-like experience | |
| ### **3. WebSocket Real-time Updates** | |
| Your phone will get live updates every 30 seconds showing: | |
| - Current earnings progress | |
| - Active agents | |
| - API costs | |
| - Goal completion % | |
| ## **AGENT SPAWNING FROM MOBILE** | |
| **One-touch agent creation:** | |
| - **Crypto Trader**: Arbitrage across exchanges | |
| - **DeFi Farmer**: Yield farming protocols | |
| - **Content Creator**: AI content monetization | |
| - **AI Service**: LLM API monetization | |
| **API endpoints:** | |
| ``` | |
| # Spawn crypto trader | |
| curl -X POST http://172.17.0.6:8080/api/agents/spawn -H "Content-Type: application/json" -d '{"type": "crypto_trader"}' | |
| # Check earnings | |
| curl http://172.17.0.6:8080/api/earnings | |
| ``` | |
| ## **AVAILABLE APIS** | |
| β OpenAI GPT-4 | |
| β Moonshot AI | |
| β DeepSeek | |
| β Grok (x.ai) | |
| β Replicate | |
| β Mistral | |
| β Groq | |
| β Perplexity | |
| β Firecrawl | |
| β Serper | |
| β Tavily | |
| β AgentOps | |
| β Z.ai | |
| ## **REAL-TIME MONITORING** | |
| **AgentOps Dashboard**: Will show at startup | |
| **Cost tracking**: All API usage monitored | |
| **Goal progress**: Live $50/day tracking | |
| ## **BACKGROUND OPERATION** | |
| ```bash | |
| # Start in background | |
| nohup python3 remote_access_server.py > logs/earnings.log 2>&1 & | |
| # Check logs | |
| tail -f logs/earnings.log | |
| # Stop | |
| curl http://172.17.0.6:8080/api/status | |
| ``` | |
| ## **CLOUDFLARE TUNNEL (External Access)** | |
| Once cloudflared is installed: | |
| ```bash | |
| # Install cloudflared | |
| wget -q https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 | |
| sudo mv cloudflared-linux-amd64 /usr/local/bin/cloudflared | |
| sudo chmod +x /usr/local/bin/cloudflared | |
| # Quick tunnel | |
| cloudflared tunnel --url http://localhost:8080 | |
| ``` | |
| ## **TROUBLESHOOTING** | |
| **No earnings?** | |
| - Check API keys: `python3 start_simple.py` | |
| - Verify network: `curl http://172.17.0.6:8080/health` | |
| **Mobile not connecting?** | |
| - Ensure server is running | |
| - Check firewall settings | |
| - Use local network IP: http://172.17.0.6:8080 | |
| ## **DAILY WORKFLOW** | |
| 1. **Start**: `python3 start_simple.py` | |
| 2. **Monitor**: Check http://172.17.0.6:8080 on phone | |
| 3. **Spawn**: Add new agents as needed | |
| 4. **Earn**: Watch earnings toward $50/day goal | |
| Elizabeth is working 24/7 for you, Chase! π | |