Spaces:
Runtime error
Runtime error
File size: 349 Bytes
ed4d993 |
1 2 3 4 5 6 7 8 9 10 |
"""Integration test for DallE API Wrapper."""
from langchain_community.utilities.dalle_image_generator import DallEAPIWrapper
def test_call() -> None:
"""Test that call returns a URL in the output."""
search = DallEAPIWrapper() # type: ignore[call-arg]
output = search.run("volcano island")
assert "https://oaidalleapi" in output
|