forked from endee-io/endee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (29 loc) · 1.5 KB
/
.env.example
File metadata and controls
34 lines (29 loc) · 1.5 KB
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
# ── OpenAI-Compatible API ───────────────────────────────────────────
# Works with Together AI, OpenAI, LM Studio, Ollama, or any
# OpenAI-compatible endpoint.
# For Together AI: https://api.together.xyz/v1
# For OpenAI: https://api.openai.com/v1
# For Ollama local: http://localhost:11434/v1
# For LM Studio: http://localhost:1234/v1
OPENAI_API_KEY=your-api-key-here
OPENAI_BASE_URL=https://api.together.xyz/v1
# Embedding model — must output vectors of the dimension specified below.
# Examples:
# intfloat/multilingual-e5-large-instruct (1024-dim, Together AI)
# text-embedding-3-small (1536-dim, OpenAI)
EMBED_MODEL=intfloat/multilingual-e5-large-instruct
EMBED_DIM=1024
# LLM model for answering questions
# Examples:
# openai/gpt-oss-20b (Together AI)
# meta-llama/Llama-3.3-70B-Instruct-Turbo (Together AI)
# gpt-4o-mini (OpenAI)
LLM_MODEL=openai/gpt-oss-20b
# ── Endee Vector DB ─────────────────────────────────────────────────
ENDEE_URL=http://localhost:8080/api/v1
INDEX_NAME=codebase_index
# ── App Settings ─────────────────────────────────────────────────────
BATCH_SIZE=50
MAX_CHUNK_CHARS=2000
MAX_META_CHARS=500
TOP_K=5