File size: 621 Bytes
e368cec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350d553
e368cec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os

LOGDIR = os.getenv("LOGDIR", "./GenAI-Arena-hf-logs/vote_log")
IMAGE_DIR = os.getenv("IMAGE_DIR", f"{LOGDIR}/images")

SERVER_PORT = os.getenv("SERVER_PORT", 7860)
ROOT_PATH = os.getenv("ROOT_PATH", None)
ELO_RESULTS_DIR = os.getenv("ELO_RESULTS_DIR", "./arena_elo/results/latest")

LOG_SERVER = os.getenv("LOG_SERVER", "https://tigerai.ca")
LOG_SERVER_SUBDOAMIN = os.getenv("LOG_SERVER_SUBDIR", "GenAI-Arena-hf-logs")
LOG_SERVER_ADDR = os.getenv("LOG_SERVER_ADDR", f"{LOG_SERVER}/{LOG_SERVER_SUBDOAMIN}")
# LOG SERVER API ENDPOINTS
APPEND_JSON = "append_json"
SAVE_IMAGE = "save_image"
SAVE_LOG = "save_log"