-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (27 loc) · 850 Bytes
/
Copy path.env.example
File metadata and controls
35 lines (27 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# --- ENV CONFIGURATION --------------- #
# Defaults/not needed are commented out #
# ------------------------------------- #
# --- LLM Configuration ---
# OpenAI model
OPENAI_MODEL=gpt-4.1
OPENAI_API_KEY=your_openai_api_key_here
# Ollama local model configuration
# Note: Remove OpenAI env above to enable
# OLLAMA_MODEL=llama3.1:8b
# OLLAMA_URI=http://host.docker.internal:11434
# --- Embedding model ---
# EMBEDDING_MODEL=BAAI/bge-m3
# --- LlamaParse for document ingestion ---
# LLAMA_CLOUD_API_KEY=your_llama_cloud_api_key_here
# --- Local API / Frontend ---
# API_PORT=8080
# FRONTEND_PORT=3000
# --- Database Configuration ---
# ChromaDB (Vector Store)
# CHROMA_HOST=chroma
# CHROMA_PORT=8000
# CHROMA_COLLECTION_NAME=financial_docs
# Neo4j (Graph Store)
# NEO4J_URI=bolt://neo4j:7687
# NEO4J_USERNAME=neo4j
# NEO4J_PASSWORD=neo4jtest