File size: 323 Bytes
aa5cda2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Configuration for frontend"""
import os
from dotenv import load_dotenv

load_dotenv()

# Backend API
BACKEND_URL = os.getenv("BACKEND_URL", "http://localhost:8000")
API_BASE_URL = f"{BACKEND_URL}/api/v1"

# Timeouts
TIMEOUT_SHORT = 5
TIMEOUT_LONG = 120

# UI Settings
PAGE_TITLE = "LLM Data Analyzer"
PAGE_ICON = "🤖"