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
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ env:
CORE_AZURE_CS_API_KEY: ${{ secrets.CORE_AZURE_CS_API_KEY }}
AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
AZURE_OPENAI_ENDPOINT: ${{ secrets.AZURE_OPENAI_ENDPOINT }}
AZURE_DI_ENDPOINT: ${{ secrets.AZURE_DI_ENDPOINT }}
AZURE_AI_API_KEY: ${{ secrets.AZURE_AI_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HF_API_TOKEN: ${{ secrets.HUGGINGFACE_API_KEY }}
PYTHON_VERSION: "3.10"
Expand Down
3 changes: 2 additions & 1 deletion haystack/components/converters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from lazy_imports import LazyImporter

_import_structure = {
"azure": ["AzureOCRDocumentConverter"],
"azure": ["AzureOCRDocumentConverter", "AzureDocumentIntelligenceConverter"],
"csv": ["CSVToDocument"],
"docx": ["DOCXToDocument"],
"html": ["HTMLToDocument"],
Expand All @@ -27,6 +27,7 @@
}

if TYPE_CHECKING:
from .azure import AzureDocumentIntelligenceConverter as AzureDocumentIntelligenceConverter
from .azure import AzureOCRDocumentConverter as AzureOCRDocumentConverter
from .csv import CSVToDocument as CSVToDocument
from .docx import DOCXToDocument as DOCXToDocument
Expand Down
Loading
Loading