File size: 569 Bytes
870ab6b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
"""gr.Carousel() component."""
from gradio_client.serializing import SimpleSerializable
from gradio.components.base import IOComponent
from gradio.events import Changeable
class Carousel(IOComponent, Changeable, SimpleSerializable):
"""
Deprecated Component
"""
def __init__(
self,
*args,
**kwargs,
):
raise DeprecationWarning(
"The Carousel component is deprecated. Please consider using the Gallery "
"component, which can be used to display images (and optional captions).",
)
|