Newer
Older
cortex-hub / ai-hub / app / config.yaml
# Default application configuration for Cortex Hub
application:
  project_name: "Cortex Hub - AI Model Service"
  version: "1.0.0"

database:
  # The mode can be 'sqlite' or 'postgres'.
  # This can be overridden by the DB_MODE environment variable.
  mode: "sqlite" 
  
  # The connection string for the database.
  # This can be overridden by the DATABASE_URL environment variable.
  url: "sqlite:///./data/ai_hub.db"

llm_providers:
  # Default model names for the LLM providers.
  # These can be overridden by environment variables like DEEPSEEK_MODEL_NAME.
  deepseek_model_name: "deepseek-chat"
  gemini_model_name: "gemini-1.5-flash-latest"

vector_store:
  # Path to the FAISS index file.
  index_path: "data/faiss_index.bin"
  # The dimension of the sentence embeddings.
  embedding_dimension: 768