| # 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': "🤖" | |
| } | |