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

[Pipeline Refactor] Migration #1460

Merged
merged 20 commits into from
Dec 11, 2023
Merged
Prev Previous commit
Next Next commit
fix import
  • Loading branch information
dsikka committed Dec 7, 2023
commit e4079d63e38462793cab35fa1b54fa9b00a4f0c4
2 changes: 1 addition & 1 deletion src/deepsparse/transformers/haystack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,5 @@ def _check_haystack_install():
_check_haystack_install()

from .nodes import *
from .legacy.pipeline import *
from .pipeline import *
from .helpers import *
2 changes: 1 addition & 1 deletion src/deepsparse/transformers/haystack/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from haystack.schema import Document
from pydantic import BaseModel, Field

from deepsparse import Pipeline
from deepsparse.legacy.pipeline import Pipeline
from deepsparse.transformers import haystack as DeepSparseHaystack


Expand Down
Loading