2022-10-26 05:00:33 +00:00
|
|
|
"""Test HuggingFace API wrapper."""
|
|
|
|
|
2022-12-13 14:46:01 +00:00
|
|
|
from pathlib import Path
|
|
|
|
|
2022-10-26 05:00:33 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from langchain.llms.huggingface_hub import HuggingFaceHub
|
2022-12-13 14:46:01 +00:00
|
|
|
from langchain.llms.loading import load_llm
|
|
|
|
from tests.integration_tests.llms.utils import assert_llm_equality
|
2022-10-26 05:00:33 +00:00
|
|
|
|
|
|
|
|
2022-11-09 02:08:46 +00:00
|
|
|
def test_huggingface_text_generation() -> None:
|
|
|
|
"""Test valid call to HuggingFace text generation model."""
|
|
|
|
llm = HuggingFaceHub(repo_id="gpt2", model_kwargs={"max_new_tokens": 10})
|
2022-10-26 05:00:33 +00:00
|
|
|
output = llm("Say foo:")
|
|
|
|
assert isinstance(output, str)
|
|
|
|
|
|
|
|
|
2022-11-09 02:08:46 +00:00
|
|
|
def test_huggingface_text2text_generation() -> None:
|
|
|
|
"""Test valid call to HuggingFace text2text model."""
|
|
|
|
llm = HuggingFaceHub(repo_id="google/flan-t5-xl")
|
|
|
|
output = llm("The capital of New York is")
|
|
|
|
assert output == "Albany"
|
|
|
|
|
|
|
|
|
2022-10-26 05:00:33 +00:00
|
|
|
def test_huggingface_call_error() -> None:
|
|
|
|
"""Test valid call to HuggingFace that errors."""
|
2022-11-09 02:08:46 +00:00
|
|
|
llm = HuggingFaceHub(model_kwargs={"max_new_tokens": -1})
|
2022-10-26 05:00:33 +00:00
|
|
|
with pytest.raises(ValueError):
|
|
|
|
llm("Say foo:")
|
2022-12-13 14:46:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_saving_loading_llm(tmp_path: Path) -> None:
|
|
|
|
"""Test saving/loading an HuggingFaceHub LLM."""
|
|
|
|
llm = HuggingFaceHub(repo_id="gpt2", model_kwargs={"max_new_tokens": 10})
|
|
|
|
llm.save(file_path=tmp_path / "hf.yaml")
|
|
|
|
loaded_llm = load_llm(tmp_path / "hf.yaml")
|
|
|
|
assert_llm_equality(llm, loaded_llm)
|