Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
prasmussen15 committed Aug 23, 2024
1 parent 129eefd commit 67dc5c6
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions core/search/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from core.edges import EntityEdge
from core.llm_client.config import EMBEDDING_DIM
from core.nodes import EpisodicNode, EntityNode
from core.nodes import EntityNode, EpisodicNode
from core.search.search_utils import (
edge_fulltext_search,
edge_similarity_search,
Expand Down Expand Up @@ -92,10 +92,7 @@ async def hybrid_search(
reranked_edges = [edge_uuid_map[uuid] for uuid in reranked_uuids]
edges.extend(reranked_edges)

context = SearchResults(
episodes=episodes,
nodes=nodes,
edges=edges)
context = SearchResults(episodes=episodes, nodes=nodes, edges=edges)

end = time()

Expand Down

0 comments on commit 67dc5c6

Please sign in to comment.