demo / backend /globals.py
Pierre Andrews
Initial commit
f52d137
raw
history blame
354 Bytes
import os
# Current gradio app port is 7860
FREE_PORTS_POOL = [
x for x in range(1024, 65535) if x != 7860
] # Avail ports for are processes
# STORAGE AND LOGGING
# Default to local ./data directory
STORAGE_PATH = os.environ.get("STORAGE_PATH", "./data")
ORG = "meta-agents-research-environments"
SPACE = "demo"
LOGS_HUB_PATH = f"{ORG}/demo-logs"