vineyard03/Code-Repair-With-LLMs
0
1import gradio as gr2from components.model_selection import create_model_selection_dropdown3 4def create_patch_generation_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 