mirror of
https://github.com/coleam00/context-engineering-intro.git
synced 2025-12-29 16:14:56 +00:00
20 lines
733 B
Plaintext
20 lines
733 B
Plaintext
# ===== Database Configuration =====
|
|
# PostgreSQL connection URL with PGVector extension
|
|
# Format: postgresql://username:password@host:port/database
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/postgres
|
|
|
|
# ===== LLM Configuration =====
|
|
# Provider: openai, anthropic, gemini, ollama, etc.
|
|
LLM_PROVIDER=openai
|
|
|
|
# Your LLM API key
|
|
LLM_API_KEY=sk-your-openai-api-key-here
|
|
|
|
# LLM model to use (e.g., gpt-4o-mini, gpt-4o, claude-3-sonnet)
|
|
LLM_MODEL=gpt-4.1-mini
|
|
|
|
# Base URL for the LLM API (change for Ollama or other OpenAI-compatible providers)
|
|
LLM_BASE_URL=https://api.openai.com/v1
|
|
|
|
# Embedding model to use (e.g., text-embedding-3-small, text-embedding-3-large, text-embedding-ada-002)
|
|
EMBEDDING_MODEL=text-embedding-3-small |