c56bef871b
Sync docs with Docusaurus / sync (push) Waiting to run
Tests / Check if changed (push) Waiting to run
Tests / format (push) Blocked by required conditions
Tests / check-imports (push) Blocked by required conditions
Tests / Unit / macos-latest (push) Blocked by required conditions
Tests / Unit / ubuntu-latest (push) Blocked by required conditions
Tests / Unit / windows-latest (push) Blocked by required conditions
Tests / mypy (push) Blocked by required conditions
Tests / Integration / ubuntu-latest (push) Blocked by required conditions
Tests / Integration / macos-latest (push) Blocked by required conditions
Tests / Integration / windows-latest (push) Blocked by required conditions
Tests / notify-slack-on-failure (push) Blocked by required conditions
Tests / Mark tests as completed (push) Blocked by required conditions
Update Platform Components Table / update (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Docker image release / Build base image (push) Waiting to run
41 lines
1.5 KiB
Python
41 lines
1.5 KiB
Python
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# We avoid lazy imports here because:
|
|
# - they create potential static type checking issues which are hard to debug
|
|
# - they make this module more complicated and hard to maintain
|
|
# - they offer minimal performance gains in this case.
|
|
|
|
import haystack.logging
|
|
|
|
# Imported so the `haystack.tracing` namespace is available after `import haystack`.
|
|
import haystack.tracing # noqa: F401
|
|
from haystack.core.component import component
|
|
from haystack.core.errors import ComponentError, DeserializationError
|
|
from haystack.core.pipeline import Pipeline
|
|
from haystack.core.serialization import default_from_dict, default_to_dict
|
|
from haystack.core.super_component.super_component import SuperComponent, super_component
|
|
from haystack.dataclasses import Answer, Document, ExtractedAnswer, GeneratedAnswer
|
|
from haystack.version import __version__ # noqa: F401
|
|
|
|
# Initialize the logging configuration.
|
|
# This is a no-op unless `structlog` is installed. `configure_structlog=False` means we only install our own scoped
|
|
# logging handler (so Haystack's logs are formatted) without touching the process-global `structlog` configuration.
|
|
haystack.logging.configure_logging(configure_structlog=False)
|
|
|
|
__all__ = [
|
|
"Answer",
|
|
"ComponentError",
|
|
"DeserializationError",
|
|
"Document",
|
|
"ExtractedAnswer",
|
|
"GeneratedAnswer",
|
|
"Pipeline",
|
|
"SuperComponent",
|
|
"super_component",
|
|
"component",
|
|
"default_from_dict",
|
|
"default_to_dict",
|
|
]
|