Skip to content

Commit

Permalink
fixed pre commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesWesch committed Oct 31, 2023
1 parent b3e8d54 commit a91c4eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/intelligence_layer/connectors/document_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def index_search(
response = requests.post(url, data=json.dumps(data), headers=self.headers)
response.raise_for_status()
return response.json()

def asymmetric_search(
self,
namespace: str,
Expand All @@ -121,6 +121,6 @@ def asymmetric_search(
max_results: int,
min_score: float,
) -> Any:
return self.index_search(namespace, collection, "asymmetric", query, max_results, min_score)


return self.index_search(
namespace, collection, "asymmetric", query, max_results, min_score
)

0 comments on commit a91c4eb

Please sign in to comment.