forked from Archives/langchain
9becdeaadf
Add LLM wrappers and examples for Banana, Writer, Modal, Stochastic AI Added rigid json format for Banana and Modal
11 lines
221 B
Python
11 lines
221 B
Python
"""Test Modal API wrapper."""
|
|
|
|
from langchain.llms.modal import Modal
|
|
|
|
|
|
def test_modal_call() -> None:
|
|
"""Test valid call to Modal."""
|
|
llm = Modal()
|
|
output = llm("Say foo:")
|
|
assert isinstance(output, str)
|