Code-Repair-With-LLMs / components /patch_validation.py
vineyard03's picture
Upload folder using huggingface_hub
e8248b5 verified
raw
history blame contribute delete
367 Bytes
import gradio as gr
from components.model_selection import create_model_selection_dropdown
def create_patch_validation_tab(choices):
with gr.Column():
create_model_selection_dropdown(choices)
gr.Textbox(label="Output", interactive=False)
gr.Code(label="File Contents", language="python", interactive=False, elem_classes=["fixed-height"])