CoolFace
Apppublic

vineyard03/Code-Repair-With-LLMs

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
patch_validation.py9 linesDownload Raw Back to components
1import gradio as gr2from components.model_selection import create_model_selection_dropdown3 4def create_patch_validation_tab(choices):5    with gr.Column():6        create_model_selection_dropdown(choices)7        gr.Textbox(label="Output", interactive=False)8        gr.Code(label="File Contents", language="python", interactive=False, elem_classes=["fixed-height"])9