You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
insider pgvector.py while executing hybrid_search() it doesn't return content_id in document result.
below is the snippet
for result in results:
search_results.append(
Document(
id=result.id,
name=result.name,
meta_data=result.meta_data,
content=result.content,
embedder=self.embedder,
embedding=result.embedding,
usage=result.usage,
)
)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
insider pgvector.py while executing hybrid_search() it doesn't return content_id in document result.
below is the snippet
for result in results:
search_results.append(
Document(
id=result.id,
name=result.name,
meta_data=result.meta_data,
content=result.content,
embedder=self.embedder,
embedding=result.embedding,
usage=result.usage,
)
)
any reason for not returning content_id?
Beta Was this translation helpful? Give feedback.
All reactions