File size: 408 Bytes
7f93e36 257ad0f cd5ae8c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# src/config/__init__.py
from .settings import APP_SETTINGS
__all__ = ['APP_SETTINGS']
# src/config/settings.py
# Application settings and configurations
APP_SETTINGS = {
'title': "🤖 SYNAPTYX - RFP Analysis Agent",
'description': "Upload RFP documents, analyze requirements, and get intelligent answers powered by AI.",
'database': "rfp_agent.db",
'layout': "wide",
'icon': "🤖"
}
|