basic structure setup
This commit is contained in:
parent
0ba46dad75
commit
95f8488227
9 changed files with 200 additions and 2 deletions
47
.env
Normal file
47
.env
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
|
||||
################################
|
||||
# General Settings
|
||||
################################
|
||||
LOGGING_LEVEL=DEBUG
|
||||
|
||||
|
||||
################################
|
||||
# Object Storage Settings
|
||||
################################
|
||||
|
||||
# NOTE! MinIO requires an key at least consisting of 8 chars for the secret key
|
||||
S3_ENDPOINT=http://localhost:9000
|
||||
S3_ACCESS_KEY=admin
|
||||
S3_SECRET_KEY=secret-admin-key
|
||||
BUCKET_NAME=rag-bucket
|
||||
|
||||
|
||||
################################
|
||||
# Vector DB Settings
|
||||
################################
|
||||
|
||||
VECTOR_STORE_ENDPOINT=localhost
|
||||
VECTOR_STORE_PORT=9200
|
||||
|
||||
OPENSEARCH_USE_SSL=True
|
||||
|
||||
|
||||
################################
|
||||
# LLM Settings
|
||||
################################
|
||||
|
||||
# Which LLm to use
|
||||
LLM_OPTION=ollamallm
|
||||
|
||||
# LLM_API_ENDPOINT=http://<ip-of-ollama-instance>:11434
|
||||
LLM_API_ENDPOINT=http://127.0.0.1:11434
|
||||
|
||||
# if required for you llm setup (for self hosted ollama not needed)
|
||||
LLM_API_KEY=placeholder
|
||||
|
||||
# valid Language options - "en" "de" "multi"
|
||||
LLM_LANGUAGE=de
|
||||
|
||||
# LLM Model to be used - "mistral", "phi3", "llama3", etc.
|
||||
LLM_MODEL_NAME=mistral
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue