mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
020c42dcae
Add support for huggingface hub I could not find a good way to enforce stop tokens over the huggingface hub api - that needs to hopefully be cleaned up in the future
20 lines
624 B
Python
20 lines
624 B
Python
"""Test LLM utility functions."""
|
|
from langchain.llms.utils import enforce_stop_tokens
|
|
|
|
|
|
def test_enforce_stop_tokens() -> None:
|
|
"""Test removing stop tokens when they occur."""
|
|
text = "foo bar baz"
|
|
output = enforce_stop_tokens(text, ["moo", "baz"])
|
|
assert output == "foo bar "
|
|
text = "foo bar baz"
|
|
output = enforce_stop_tokens(text, ["moo", "baz", "bar"])
|
|
assert output == "foo "
|
|
|
|
|
|
def test_enforce_stop_tokens_none() -> None:
|
|
"""Test removing stop tokens when they do not occur."""
|
|
text = "foo bar baz"
|
|
output = enforce_stop_tokens(text, ["moo"])
|
|
assert output == "foo bar baz"
|