Spaces:
mxrkai
/
Runtime error

test24 / api /typing.py
Niansuh's picture
Create typing.py
ede8b1e verified
raw
history blame
211 Bytes
# api/typing.py
from typing import AsyncGenerator, Union, List, Dict
from .image import ImageResponse
Messages = List[Dict[str, Union[str, list]]]
AsyncResult = AsyncGenerator[Union[str, ImageResponse], None]