Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug Fix] WeaviateRM Patch, add long_text key to passages #315

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dspy/retrieve/weaviate_rm.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from collections import defaultdict
from typing import List, Union
import dspy
from dsp.utils import dotdict
from typing import Optional

try:
Expand Down Expand Up @@ -78,5 +79,6 @@ def forward(self, query_or_queries: Union[str, List[str]], k: Optional[int]) ->
results = results["data"]["Get"][self._weaviate_collection_name]
parsed_results = [result["content"] for result in results]
passages.extend(parsed_results)
passages.extend(dotdict({"long_text": d}) for d in results)

return dspy.Prediction(passages=passages)
Loading