Code-Repair-w-LLMs / components /bug_finding.py
vineyard03's picture
Upload folder using huggingface_hub
9adf324 verified
raw
history blame contribute delete
370 Bytes
import gradio as gr
from components.model_selection import create_model_selection_dropdown
def create_bug_finding_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"])