datn-fastapi / chatbot /config.py
truglpk3's picture
Upload chatbot
77eb34e verified
raw
history blame
262 Bytes
from dotenv import load_dotenv
import os
load_dotenv()
DEEPSEEK_API_KEY = os.getenv('DEEPSEEK_API_KEY')
PINECONE_API_KEY = os.getenv('PINECONE_API_KEY')
ELASTIC_CLOUD_URL = os.getenv('ELASTIC_CLOUD_URL')
ELASTIC_API_KEY = os.getenv('ELASTIC_API_KEY')