-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 750 Bytes
/
.env.example
File metadata and controls
23 lines (18 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Brain Synapse Environment Configuration
# Copy this file to .env and fill in your values
# Vector Embedding API Configuration
# Supports OpenAI-compatible embedding APIs (OpenAI, local models, etc.)
# Example: https://api.openai.com/v1/embeddings
VECTOR_API_URL=your_embedding_api_url_here
VECTOR_API_KEY=your_api_key_here
VECTOR_MODEL=text-embedding-3-small
# Alternative variable names (also supported)
# EMBEDDING_API_URL=your_embedding_api_url_here
# EMBEDDING_API_KEY=your_api_key_here
# EMBEDDING_MODEL=text-embedding-3-small
# Optional: Timeout settings (in milliseconds)
VECTOR_TIMEOUT=5000
# Optional: Maximum results to return from vector search
VECTOR_MAX_RESULTS=5
# Optional: Chunk size for text processing
VECTOR_CHUNK_SIZE=1000