You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/experimental/langchain_experimental/prompt_injection_identifier/__init__.py

11 lines
369 B
Python

"""**HuggingFace Injection Identifier** is a tool that uses
[HuggingFace Prompt Injection model](https://huggingface.co/deepset/deberta-v3-base-injection)
to detect prompt injection attacks.
"""
from langchain_experimental.prompt_injection_identifier.hugging_face_identifier import (
HuggingFaceInjectionIdentifier,
)
__all__ = ["HuggingFaceInjectionIdentifier"]