-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.example.env
44 lines (36 loc) · 1.58 KB
/
.example.env
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
40
41
42
43
44
#*****************************************************************
# LLM and Embedding Model
#*****************************************************************
LLM=codellama:7b-instruct #or any Ollama model tag, gpt-4, gpt-3.5, or claudev2
EMBEDDING_MODEL=ollama #or sentence_transformer, openai, ollama, or aws
#*****************************************************************
# Neo4j
#*****************************************************************
NEO4J_URI=neo4j://database:7687
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=password
#*****************************************************************
# Langchain
#*****************************************************************
# Optional for enabling Langchain Smith API
#LANGCHAIN_TRACING_V2=true # false
#LANGCHAIN_ENDPOINT="https://api.smith.langchain.com"
#LANGCHAIN_PROJECT=#your-project-name
#LANGCHAIN_API_KEY=#your-api-key ls_...
#*****************************************************************
# Ollama
#*****************************************************************
OLLAMA_BASE_URL=http://host.docker.internal:11434
# OLLAMA_BASE_URL=http://llm:11434
#*****************************************************************
# OpenAI
#*****************************************************************
# Only required when using OpenAI LLM or embedding model
#OPENAI_API_KEY=sk-...
#*****************************************************************
# AWS
#*****************************************************************
# Only required when using AWS Bedrock LLM or embedding model
#AWS_ACCESS_KEY_ID=
#AWS_SECRET_ACCESS_KEY=
#AWS_DEFAULT_REGION=us-east-1