forked from dnrops/open-webui
fix: model dump issue
This commit is contained in:
parent
457360dae7
commit
dcab991d44
|
|
@ -193,7 +193,8 @@ def query_collection(
|
|||
k=k,
|
||||
query_embedding=query_embedding,
|
||||
)
|
||||
results.append(result.model_dump())
|
||||
if result is not None:
|
||||
results.append(result.model_dump())
|
||||
except Exception as e:
|
||||
log.exception(f"Error when querying the collection: {e}")
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in New Issue