Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akotyla committed Oct 14, 2024
1 parent bf46c47 commit b268df1
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

from ..utils import get_cls_from_config
from ..utils.config_handling import get_cls_from_config
from .base import VectorDBEntry, VectorStore
from .chromadb_store import ChromaDBStore
from .in_memory import InMemoryVectorStore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
HAS_CHROMADB = False

from ragbits.core.embeddings import Embeddings
from ragbits.core.utils import get_cls_from_config
from ragbits.core.utils.config_handling import get_cls_from_config
from ragbits.core.vector_store import VectorDBEntry, VectorStore


Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

from ragbits.core.utils import get_cls_from_config
from ragbits.core.utils.config_handling import get_cls_from_config

from .base import BaseProvider
from .dummy import DummyProvider
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys
from typing import Optional

from ragbits.core.utils import get_cls_from_config
from ragbits.core.utils.config_handling import get_cls_from_config

from .base import QueryRephraser
from .noop import NoopQueryRephraser
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys
from typing import Optional

from ragbits.core.utils import get_cls_from_config
from ragbits.core.utils.config_handling import get_cls_from_config

from .base import Reranker
from .noop import NoopReranker
Expand Down

0 comments on commit b268df1

Please sign in to comment.