File size: 354 Bytes
f52d137 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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"
|