chatbot / config.py
Keshabwi66's picture
Huggingface
4184ffc
raw
history blame contribute delete
464 Bytes
import os
from dotenv import load_dotenv
load_dotenv()
#vector database
PINECONE_API_KEY = os.getenv("PINECONE_API_KEY")
PINECONE_ENV = os.getenv("PINECONE_ENV")
PINECONE_INDEX_NAME = os.getenv("PINECONE_INDEX_NAME")
#GROQ
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
#tAVILY
TAVILY_API_KEY = os.getenv("TAVILY_API_KEY")
#EMBEDDING model
EMBEDDING_MODEL = os.getenv("EMBEDDING_MODEL")
#path(adjust as needed)
DOC_SSOURCE_DIR = os.getenv("DOC_SSOURCE_DIR")