refac: api usage

This commit is contained in:
Timothy Jaeryang Baek 2025-05-05 17:43:51 +04:00
parent 56cefde161
commit 512d475ecc

View File

@ -938,7 +938,12 @@ async def process_chat_payload(request, form_data, user, metadata, model):
)
# If there are citations, add them to the data_items
sources = [source for source in sources if source.get("source", {}).get("name", "")]
sources = [
source
for source in sources
if source.get("source", {}).get("name", "")
or source.get("source", {}).get("id", "")
]
if len(sources) > 0:
events.append({"sources": sources})