ollama/examples/langchain-python-rag-privategpt/constants.py

12 lines
291 B
Python
Raw Normal View History

2023-08-11 07:18:13 +00:00
import os
from chromadb.config import Settings
# Define the folder for storing database
PERSIST_DIRECTORY = os.environ.get('PERSIST_DIRECTORY', 'db')
# Define the Chroma settings
CHROMA_SETTINGS = Settings(
persist_directory=PERSIST_DIRECTORY,
anonymized_telemetry=False
)