Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
22088a1
feat: Added Hybrid Search Config and Tests [1/N]
vishwarajanand May 19, 2025
30942ff
feat: create hybrid search capable vector store table [2/N]
vishwarajanand May 19, 2025
e641575
feat: adds hybrid search for async VS interface [3/N]
vishwarajanand May 19, 2025
2a0bf0d
feat: adds hybrid search for sync VS interface [4/N]
vishwarajanand May 19, 2025
0562678
Merge branch 'main' into hybrid_search_1
vishwarajanand May 30, 2025
70ee300
fix: tests
vishwarajanand May 30, 2025
5234648
fix: pr comments
vishwarajanand May 30, 2025
73d4400
fix: lint
vishwarajanand May 30, 2025
57ceb2c
fix: lint
vishwarajanand May 30, 2025
678e7b1
Merge branch 'hybrid_search_1' into hybrid_search_2
vishwarajanand May 30, 2025
7feb7a0
Merge branch 'hybrid_search_2' into hybrid_search_3
vishwarajanand May 30, 2025
ef349a3
pr comment: add disclaimer on slow query on config docstring
vishwarajanand May 30, 2025
ceabf10
pr comment: add disclaimer in engine table create
vishwarajanand May 30, 2025
9611164
Merge branch 'hybrid_search_1' into hybrid_search_2
vishwarajanand May 30, 2025
8a39e61
feat: address pr comments
vishwarajanand Jun 2, 2025
e5bd215
Merge branch 'hybrid_search_2' into hybrid_search_3
vishwarajanand Jun 2, 2025
6854ee0
fix: tsv column name in tests
vishwarajanand Jun 2, 2025
5bf1a4b
fix: add if exists in drop to avoid failures
vishwarajanand Jun 2, 2025
4153c2d
Merge branch 'hybrid_search_3' into hybrid_search_4
vishwarajanand Jun 2, 2025
e092c82
fix: tests
vishwarajanand Jun 2, 2025
08a4ff6
feat: adds hybrid search for sync VS interface [4/N]
vishwarajanand Jun 3, 2025
076f0cb
feat: adds hybrid search for async VS interface [3/N]
vishwarajanand Jun 3, 2025
620e3e5
feat: create hybrid search capable vector store table [2/N]
vishwarajanand Jun 3, 2025
0d223fd
chore: fix lint
vishwarajanand Jun 3, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: lint
  • Loading branch information
vishwarajanand committed May 30, 2025
commit 73d4400dd2ab3723fe3422af0839d9517f8159df
1 change: 1 addition & 0 deletions tests/unit_tests/v2/test_hybrid_search_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
weighted_sum_ranking,
)


# Helper to create mock input items that mimic RowMapping for the fusion functions
def get_row(doc_id: str, score: float, content: str = "content") -> dict:
"""
Expand Down
Loading