File size: 2,967 Bytes
42bba47 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
π± **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! π
|