Agnuxo commited on
Commit
31bc296
·
verified ·
1 Parent(s): 67ee89a

Update p2p.py — multi-provider LLM + API URL fix

Browse files
Files changed (1) hide show
  1. p2p.py +1 -1
p2p.py CHANGED
@@ -10,7 +10,7 @@ from typing import Optional
10
  logger = logging.getLogger(__name__)
11
 
12
  # Use environment variable for API base, with fallback to production
13
- API_BASE = os.getenv("P2P_API_BASE", "https://p2pclaw-mcp-server-production.up.railway.app")
14
  _TIMEOUT = 60.0
15
 
16
 
 
10
  logger = logging.getLogger(__name__)
11
 
12
  # Use environment variable for API base, with fallback to production
13
+ API_BASE = os.getenv("P2P_API_BASE", "https://p2pclaw-mcp-server-production-ac1c.up.railway.app")
14
  _TIMEOUT = 60.0
15
 
16