-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env_example
More file actions
35 lines (30 loc) · 920 Bytes
/
.env_example
File metadata and controls
35 lines (30 loc) · 920 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
AUTODS_MODEL=gpt-5
AUTODS_API_KEY=change-me
AUTODS_BASE_URL=https://api.openai.com/v1
AUTODS_MAX_RETRIES=3
AUTODS_MODEL_KWARGS_JSON=
AUTODS_EXTRA_BODY_JSON=
AUTODS_DEFAULT_HEADERS_JSON=
LLM_PROVIDER="ollama"
LLM_MODEL="qwen3-coder:30b"
LLM_API_KEY="ollama"
LLM_ENDPOINT="http://localhost:11434/v1"
EMBEDDING_PROVIDER="ollama"
EMBEDDING_MODEL="embeddinggemma:latest"
EMBEDDING_ENDPOINT="http://localhost:11434/api/embed"
EMBEDDING_DIMENSIONS="768"
HUGGINGFACE_TOKENIZER="Qwen/Qwen3-Coder-30B-A3B-Instruct"
TELEMETRY_DISABLED=true
ENABLE_BACKEND_ACCESS_CONTROL="false"
# VECTOR_DB_PROVIDER="pgvector"
# DB_PROVIDER="postgres"
# DB_NAME="cognee_db"
# DB_HOST="localhost"
# DB_PORT="5432"
# DB_USERNAME="cognee"
# DB_PASSWORD="cognee"
# GRAPH_DATABASE_PROVIDER="neo4j"
# GRAPH_DATABASE_URL="bolt://localhost:7687"
# GRAPH_DATABASE_NAME="neo4j"
# GRAPH_DATABASE_USERNAME="neo4j"
# GRAPH_DATABASE_PASSWORD="pleaseletmein"