Spaces:
Sleeping
Sleeping
File size: 315 Bytes
6bef416 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | from __future__ import annotations
from dataclasses import dataclass
APP_TITLE = "RAG QA Command Center"
APP_VERSION = "1.0.0"
@dataclass(frozen=True)
class AppSettings:
"""Runtime settings for the Streamlit application."""
data_dir: str = "data"
docs_dir: str = "docs"
page_icon: str = "📊"
|