Skip to content

Commit

Permalink
refactor: Move db package to augmented package (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab authored Nov 21, 2024
1 parent 58c830d commit b7a13b7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/rago/augmented/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from typeguard import typechecked

from rago.db import DBBase, FaissDB
from rago.augmented.db import DBBase, FaissDB

if TYPE_CHECKING:
import numpy as np
Expand Down
4 changes: 2 additions & 2 deletions src/rago/db/__init__.py → src/rago/augmented/db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

from __future__ import annotations

from rago.db.base import DBBase
from rago.db.faiss import FaissDB
from rago.augmented.db.base import DBBase
from rago.augmented.db.faiss import FaissDB

__all__ = [
'DBBase',
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/rago/db/faiss.py → src/rago/augmented/db/faiss.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from typeguard import typechecked

from rago.db.base import DBBase
from rago.augmented.db.base import DBBase


@typechecked
Expand Down

0 comments on commit b7a13b7

Please sign in to comment.