mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-01 21:35:34 +00:00
Signed-off-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Dan O'Donovan <dan.odonovan@gmail.com> Co-authored-by: Tom Daniel Grande <tomdgrande@gmail.com> Co-authored-by: Grande <Tom.Daniel.Grande@statsbygg.no> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com> Co-authored-by: Tomaz Bratanic <bratanic.tomaz@gmail.com> Co-authored-by: ZhangShenao <15201440436@163.com> Co-authored-by: Friso H. Kingma <fhkingma@gmail.com> Co-authored-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Nuno Campos <nuno@langchain.dev> Co-authored-by: Morgante Pell <morgantep@google.com>
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
"""Test Cohere API wrapper."""
|
|
|
|
from pathlib import Path
|
|
|
|
from pydantic import SecretStr
|
|
from pytest import MonkeyPatch
|
|
|
|
from langchain_community.llms.cohere import Cohere
|
|
from langchain_community.llms.loading import load_llm
|
|
from tests.integration_tests.llms.utils import assert_llm_equality
|
|
|
|
|
|
def test_cohere_call() -> None:
|
|
"""Test valid call to cohere."""
|
|
llm = Cohere(max_tokens=10) # type: ignore[call-arg]
|
|
output = llm.invoke("Say foo:")
|
|
assert isinstance(output, str)
|
|
|
|
|
|
def test_cohere_api_key(monkeypatch: MonkeyPatch) -> None:
|
|
"""Test that cohere api key is a secret key."""
|
|
# test initialization from init
|
|
assert isinstance(Cohere(cohere_api_key="1").cohere_api_key, SecretStr) # type: ignore[arg-type, call-arg]
|
|
|
|
# test initialization from env variable
|
|
monkeypatch.setenv("COHERE_API_KEY", "secret-api-key")
|
|
assert isinstance(Cohere().cohere_api_key, SecretStr) # type: ignore[call-arg]
|
|
|
|
|
|
def test_saving_loading_llm(tmp_path: Path) -> None:
|
|
"""Test saving/loading an Cohere LLM."""
|
|
llm = Cohere(max_tokens=10) # type: ignore[call-arg]
|
|
llm.save(file_path=tmp_path / "cohere.yaml")
|
|
loaded_llm = load_llm(tmp_path / "cohere.yaml")
|
|
assert_llm_equality(llm, loaded_llm)
|