datn-fastapi / chatbot /config.py
truglpk3's picture
update optimization algorithm
b5961aa
raw
history blame contribute delete
304 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')
API_BASE_URL=os.getenv('API_BASE_URL')