File size: 236 Bytes
ce40b40
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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!")