iBrokeTheCode's picture
chore: Add model UI files
459b8f5
raw
history blame contribute delete
143 Bytes
import os
API_HOST = os.getenv("API_HOST", "localhost")
API_PORT = os.getenv("API_PORT", 8000)
API_BASE_URL = f"http://{API_HOST}:{API_PORT}"