fix: mongo db database name in settings

This commit is contained in:
Alex
2025-04-24 17:29:41 +01:00
parent 76fd6e15cc
commit df9d432d29
10 changed files with 16 additions and 11 deletions

View File

@@ -291,7 +291,7 @@ class OpenAILLM(BaseLLM):
from application.core.mongo_db import MongoDB
mongo = MongoDB.get_client()
db = mongo["docsgpt"]
db = mongo[settings.MONGO_DB_NAME]
attachments_collection = db["attachments"]
if '_id' in attachment:
attachments_collection.update_one(