Flux-TRELLIS / app.py
gokaygokay's picture
pixelize
fd05616
raw
history blame
514 Bytes
import gradio as gr
from pixelize_processor import create_pixelize_tab
# Import other processing interfaces as needed
# from other_processor import create_other_tab
# Create main Gradio interface
with gr.Blocks(title="Image Processing Suite") as demo:
gr.Markdown("# Image Processing Suite")
# Create tabs for different processing functions
create_pixelize_tab()
# Add more tabs as needed
# create_other_tab()
# Launch the interface
if __name__ == "__main__":
demo.launch(share=True)