File size: 226 Bytes
51ea908
 
20a8e92
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
# app/core/mongo.py

from pymongo import MongoClient
import os

MONGO_URI = os.getenv("MONGO_URI")
DB_NAME = "pdf_chat_db"

client = MongoClient(MONGO_URI)
db = client[DB_NAME]

conversations = db["conversations"]