-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (27 loc) · 766 Bytes
/
.env.example
File metadata and controls
36 lines (27 loc) · 766 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
36
# ===================================
# Local RAG Configuration
# ===================================
# Ollama settings
LLM_MODEL=llama3
EMBEDDING_MODEL=nomic-embed-text
OLLAMA_BASE_URL=http://localhost:11434
# RAG settings
SIMILARITY_TOP_K=5
# Assistant settings (local-rag)
ASSISTANT_NAME=ShopBot
STORE_NAME=Artisan Store
# ===================================
# Bedrock RAG Configuration
# ===================================
# AWS settings
AWS_REGION=us-east-1
BEDROCK_MODEL_ID=anthropic.claude-3-sonnet-20240229-v1:0
# Knowledge Base (leave empty to skip RAG)
BEDROCK_KNOWLEDGE_BASE_ID=
# Inference settings
BEDROCK_TEMPERATURE=0.5
BEDROCK_MAX_TOKENS=250
BEDROCK_TOP_K=200
BEDROCK_TOP_P=0.1
# Assistant settings (bedrock-rag)
# ASSISTANT_NAME=WizardBot