aai / src /ui /images.py
barreloflube's picture
Refactor UI structure and add image tab
ce40b40
raw
history blame
236 Bytes
import os
import gradio as gr
from .tabs import (
flux_tab,
)
def image_tab():
with gr.Tabs():
with gr.Tab(label="Flux"):
flux_tab()
with gr.Tab(label="SDXL"):
gr.Label("Coming soon!")