Skip to content

Commit

Permalink
updated to match changes from upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonSmith committed Jun 19, 2024
1 parent 21bd5c2 commit 5b6b45b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/backend/tools/minimap.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,5 @@ def is_available(cls) -> bool:
def call(self, parameters: dict, **kwargs: Any) -> List[Dict[str, Any]]:
query = parameters.get("query", "")
results = self.client.run(query)
return results # [{"text": result} for result in results]
print(results)
return [dict(result) for result in results]

0 comments on commit 5b6b45b

Please sign in to comment.