Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions huf/ai/knowledge/backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
Knowledge Backend Abstraction

This module provides a unified interface for knowledge storage backends.
Phase 1: SQLite FTS only
Future: Chroma, pgvector, managed vector DBs
Supported: SQLite FTS (keyword search), SQLite Vec (vector search)
"""

from abc import ABC, abstractmethod
Expand Down Expand Up @@ -65,7 +64,6 @@ def get_backend(backend_type: str) -> type:
"""Get backend class by type."""
backends = {
"sqlite_fts": "huf.ai.knowledge.backends.sqlite_fts.SQLiteFTSBackend",
"zvec": "huf.ai.knowledge.backends.zvec_backend.ZvecBackend",
"sqlite_vec": "huf.ai.knowledge.backends.sqlite_vec_backend.SQLiteVecBackend",
}

Expand Down
300 changes: 0 additions & 300 deletions huf/ai/knowledge/backends/zvec_backend.py

This file was deleted.

Loading
Loading