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