mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
481d3855dc
- `llm(prompt)` -> `llm.invoke(prompt)` - `llm(prompt=prompt` -> `llm.invoke(prompt)` (same with `messages=`) - `llm(prompt, callbacks=callbacks)` -> `llm.invoke(prompt, config={"callbacks": callbacks})` - `llm(prompt, **kwargs)` -> `llm.invoke(prompt, **kwargs)`
20 lines
564 B
Python
20 lines
564 B
Python
"""Test Baichuan LLM Endpoint."""
|
|
from langchain_core.outputs import LLMResult
|
|
|
|
from langchain_community.llms.baichuan import BaichuanLLM
|
|
|
|
|
|
def test_call() -> None:
|
|
"""Test valid call to baichuan."""
|
|
llm = BaichuanLLM()
|
|
output = llm.invoke("Who won the second world war?")
|
|
assert isinstance(output, str)
|
|
|
|
|
|
def test_generate() -> None:
|
|
"""Test valid call to baichuan."""
|
|
llm = BaichuanLLM()
|
|
output = llm.generate(["Who won the second world war?"])
|
|
assert isinstance(output, LLMResult)
|
|
assert isinstance(output.generations, list)
|