| import gradio as gr | |
| from geko.app import create_app, CSS | |
| demo = create_app() | |
| demo.launch( | |
| server_name="0.0.0.0", | |
| server_port=7860, | |
| share=False, | |
| css=CSS, | |
| theme=gr.themes.Base( | |
| primary_hue=gr.themes.colors.green, | |
| neutral_hue=gr.themes.colors.slate, | |
| ), | |
| ) | |