Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# OpenAI Configuration
OPENAI_API_KEY=

# Embedding Model
EMBEDDING_MODEL=text-embedding-3-small

# Chat Model
CHAT_MODEL=gpt-4-turbo-preview

# RAG Configuration
MAX_CHUNKS=5
SIMILARITY_THRESHOLD=0.7

# Chroma Vector Database
CHROMA_HOST=localhost
CHROMA_PORT=8000
CHROMA_COLLECTION=legal_docs

# Server Configuration
PORT=3000
HOST=0.0.0.0

# Web Configuration (Next.js) - URL of the RAG API for the frontend
NEXT_PUBLIC_API_URL=http://localhost:3000
# OpenAI Configuration
OPENAI_API_KEY=
# Embedding Model
EMBEDDING_MODEL=text-embedding-3-small
# Chat Model
CHAT_MODEL=gpt-4-turbo-preview
# RAG Configuration
MAX_CHUNKS=5
SIMILARITY_THRESHOLD=0.7
# Chroma Vector Database
CHROMA_HOST=localhost
CHROMA_PORT=8000
CHROMA_COLLECTION=legal_docs
# Server Configuration
PORT=3000
HOST=0.0.0.0
# Web Configuration (Next.js) - URL of the RAG API for the frontend
NEXT_PUBLIC_API_URL=http://localhost:3000
Loading
Loading