mirror of
https://github.com/Ladebeze66/projetcbaollm.git
synced 2025-12-16 20:27:51 +01:00
37 lines
865 B
Python
37 lines
865 B
Python
from gradio.themes.base import Base, ThemeClass
|
|
from gradio.themes.citrus import Citrus
|
|
from gradio.themes.default import Default
|
|
from gradio.themes.glass import Glass
|
|
from gradio.themes.monochrome import Monochrome
|
|
from gradio.themes.ocean import Ocean
|
|
from gradio.themes.origin import Origin
|
|
from gradio.themes.soft import Soft
|
|
from gradio.themes.utils import colors, sizes
|
|
from gradio.themes.utils.colors import Color
|
|
from gradio.themes.utils.fonts import Font, GoogleFont
|
|
from gradio.themes.utils.sizes import Size
|
|
|
|
__all__ = [
|
|
"Base",
|
|
"Color",
|
|
"Default",
|
|
"Font",
|
|
"Glass",
|
|
"GoogleFont",
|
|
"Monochrome",
|
|
"Size",
|
|
"Soft",
|
|
"ThemeClass",
|
|
"colors",
|
|
"sizes",
|
|
"Origin",
|
|
"Citrus",
|
|
"Ocean",
|
|
]
|
|
|
|
|
|
def builder(*args, **kwargs):
|
|
from gradio.themes.builder_app import demo
|
|
|
|
return demo.launch(*args, **kwargs)
|