CoolFace
Apppublic

vineyard03/Code-Repair-With-LLMs

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
chat.py14 linesDownload Raw Back to components
1import gradio as gr2 3def create_chat_controls():4    with gr.Row():5        with gr.Column(scale=10):6            msg = gr.Textbox(label="Prompt", placeholder="Enter prompt")7 8    with gr.Row():9        with gr.Column(min_width=0, scale=10):10            submit_button = gr.Button("Submit Prompt")11 12    return msg, submit_button13 14