mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
8f38b7a725
## Summary I ran `ruff check --extend-select RUF100 -n` to identify `# noqa` comments that weren't having any effect in Ruff, and then `ruff check --extend-select RUF100 -n --fix` on select files to remove all of the unnecessary `# noqa: F401` violations. It's possible that these were needed at some point in the past, but they're not necessary in Ruff v0.1.15 (used by LangChain) or in the latest release. Co-authored-by: Erick Friis <erick@langchain.dev>
49 lines
1.4 KiB
Python
49 lines
1.4 KiB
Python
"""**Cross encoders** are wrappers around cross encoder models from different APIs and
|
|
services.
|
|
|
|
**Cross encoder models** can be LLMs or not.
|
|
|
|
**Class hierarchy:**
|
|
|
|
.. code-block::
|
|
|
|
BaseCrossEncoder --> <name>CrossEncoder # Examples: SagemakerEndpointCrossEncoder
|
|
"""
|
|
import importlib
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
if TYPE_CHECKING:
|
|
from langchain_community.cross_encoders.base import (
|
|
BaseCrossEncoder,
|
|
)
|
|
from langchain_community.cross_encoders.fake import (
|
|
FakeCrossEncoder,
|
|
)
|
|
from langchain_community.cross_encoders.huggingface import (
|
|
HuggingFaceCrossEncoder,
|
|
)
|
|
from langchain_community.cross_encoders.sagemaker_endpoint import (
|
|
SagemakerEndpointCrossEncoder,
|
|
)
|
|
|
|
__all__ = [
|
|
"BaseCrossEncoder",
|
|
"FakeCrossEncoder",
|
|
"HuggingFaceCrossEncoder",
|
|
"SagemakerEndpointCrossEncoder",
|
|
]
|
|
|
|
_module_lookup = {
|
|
"BaseCrossEncoder": "langchain_community.cross_encoders.base",
|
|
"FakeCrossEncoder": "langchain_community.cross_encoders.fake",
|
|
"HuggingFaceCrossEncoder": "langchain_community.cross_encoders.huggingface",
|
|
"SagemakerEndpointCrossEncoder": "langchain_community.cross_encoders.sagemaker_endpoint", # noqa: E501
|
|
}
|
|
|
|
|
|
def __getattr__(name: str) -> Any:
|
|
if name in _module_lookup:
|
|
module = importlib.import_module(_module_lookup[name])
|
|
return getattr(module, name)
|
|
raise AttributeError(f"module {__name__} has no attribute {name}")
|