Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Move db package to augmented package #27

Merged
merged 1 commit into from
Nov 21, 2024
Merged
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
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
Loading