Skip to content

Config py

peter-olai edited this page May 7, 2025 · 3 revisions

Configuration (config.py)

The src/config.py file manages the configuration for the chat service. Many other modules rely on this for their settings, e.g., LLM Integration, Transcription Service.

Responsibilities

  • Loads configuration settings from environment variables, .env files, or other sources.
  • Provides access to configuration values throughout the application.

Example Configuration Parameters

  • API keys for external services (LLMs, etc.)
  • Database connection strings
  • Service ports
  • Logging levels

(Detail how to set configuration and list important parameters.)

Clone this wiki locally