Skip to content

Commit

Permalink
feat(backend): massage collate test to work with mock rerank
Browse files Browse the repository at this point in the history
  • Loading branch information
ezawadski committed Jan 29, 2025
1 parent 0cedfc1 commit c7d7f9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/tests/unit/tools/test_collate.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ async def test_rerank() -> None:
"parameters": {"query": "highest mountain"},
"name": "retriever",
},
"outputs": [outputs[0]],
"outputs": [outputs[0]["text"]],
},
{
"call": {
"parameters": {"query": "four components of blood"},
"name": "retriever",
},
"outputs": [outputs[1]],
"outputs": [outputs[1]["text"]],
},
{
"call": {
Expand Down

0 comments on commit c7d7f9c

Please sign in to comment.