CoolFace
Apppublic

vineyard03/Code-Repair-With-LLMs

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
main.py11 linesDownload Raw Back to root
1import gradio as gr2from components.front_page import create_full_ui3 4# Create the UI5app = create_full_ui()6 7# Launch the app8if __name__ == "__main__":9    app.launch(share=True, show_api=False)10 11