Skip to content

Commit

Permalink
langfuse fix
Browse files Browse the repository at this point in the history
Signed-off-by: dbczumar <corey.zumar@databricks.com>
  • Loading branch information
dbczumar committed Sep 30, 2024
2 parents 926c750 + 6041955 commit 89aecc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dspy/retrieve/snowflake_rm.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def forward(

if len(retrieval_columns) == 1:
passages.extend(
dotdict({"long_text": passage[self.retrieval_columns[0]]}) for passage in response_chunks["results"]
dotdict({"long_text": passage[retrieval_columns[0]]}) for passage in response_chunks["results"]
)
else:
passages.extend(dotdict({"long_text": str(passage)}) for passage in response_chunks["results"])
Expand Down

0 comments on commit 89aecc4

Please sign in to comment.