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)`
13 lines
407 B
Python
13 lines
407 B
Python
"""Test manifest integration."""
|
|
from langchain_community.llms.manifest import ManifestWrapper
|
|
|
|
|
|
def test_manifest_wrapper() -> None:
|
|
"""Test manifest wrapper."""
|
|
from manifest import Manifest
|
|
|
|
manifest = Manifest(client_name="openai")
|
|
llm = ManifestWrapper(client=manifest, llm_kwargs={"temperature": 0})
|
|
output = llm.invoke("The capital of New York is:")
|
|
assert output == "Albany"
|