mirror of
https://github.com/hwchase17/langchain.git
synced 2025-04-29 12:25:37 +00:00
11 lines
324 B
Python
11 lines
324 B
Python
"""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()
|
|
output = search.run("volcano island")
|
|
assert "https://oaidalleapi" in output
|