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)`
11 lines
283 B
Python
11 lines
283 B
Python
"""Test ForefrontAI API wrapper."""
|
|
|
|
from langchain_community.llms.forefrontai import ForefrontAI
|
|
|
|
|
|
def test_forefrontai_call() -> None:
|
|
"""Test valid call to forefrontai."""
|
|
llm = ForefrontAI(length=10)
|
|
output = llm.invoke("Say foo:")
|
|
assert isinstance(output, str)
|