forked from craig-osterhout/docker-genai-sample
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenv.demo
39 lines (33 loc) · 1.4 KB
/
env.demo
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
36
37
38
39
#*****************************************************************
# Streamlit Telemetry
#*****************************************************************
STREAMLIT_BROWSER_GATHER_USAGE_STATS=false
#*****************************************************************
# Transformers Cache Dir
#*****************************************************************
HF_HOME=/app/.tf_cache
#*****************************************************************
# LLM and Embedding Model
#*****************************************************************
LLM=llama3.2:1b-instruct-q6_K # Set to "gpt-3.5" to use OpenAI.
EMBEDDING_MODEL=sentence-transformers:all-MiniLM-L6-v2
#*****************************************************************
# Neo4j
#*****************************************************************
NEO4J_URI=neo4j://database:7687
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=password
#*****************************************************************
# Ollama
#*****************************************************************
OLLAMA_BASE_URL=http://ollama:11434
HIP_VISIBLE_DEVICES=-1
OLLAMA_INTEL_GPU=1
OLLAMA_LLM_LIBRARY=cpu_avx
#*****************************************************************
# OpenAI
#*****************************************************************
# Only required when using OpenAI LLM or embedding model
# OpenAI charges may apply. For details, see
# https://openai.com/pricing
#OPENAI_API_KEY=sk-..