2022-10-26 05:00:33 +00:00
|
|
|
"""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 "
|
2022-12-13 13:48:53 +00:00
|
|
|
text = "foo bar baz"
|
|
|
|
output = enforce_stop_tokens(text, ["moo", "bar"])
|
|
|
|
assert output == "foo "
|
2022-10-26 05:00:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
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"
|