Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .semversioner/next-release/patch-20250522234310308717.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "patch",
"description": "Fix Drift Reduce Response for non streaming calls"
}
2 changes: 1 addition & 1 deletion graphrag/query/structured_search/drift_search/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ async def _reduce_response(
model_response = await self.model.achat(
prompt=query,
history=search_messages,
model_parameters=llm_kwargs,
model_parameters=llm_kwargs.get("model_params", {}),
)

reduced_response = model_response.output.content
Expand Down
Loading