20 lines
461 B
Bash
20 lines
461 B
Bash
# Application Settings
|
|
APP_NAME="LangChain Learning Kit"
|
|
DEBUG=False
|
|
LOG_LEVEL=INFO
|
|
|
|
# Database Configuration
|
|
DATABASE_URL=mysql+pymysql://root:123456@localhost:3306/langchain_learning
|
|
|
|
# OpenAI Configuration
|
|
OPENAI_BASE_URL=https://api.openai-proxy.org/v1
|
|
OPENAI_API_KEY=sk-QcFv70swj4t8PlUpC7lKHIcfH8URo8USzPjfZXTQsd1Bv8C6
|
|
|
|
|
|
# FAISS Storage
|
|
FAISS_BASE_PATH=C:\\work\\workspace\\PycharmProjects\\study-work\\faiss
|
|
|
|
# Server Configuration
|
|
HOST=0.0.0.0
|
|
PORT=8000
|