Spaces:
Build error
Build error
File size: 342 Bytes
9adf324 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import gradio as gr
def create_chat_controls():
with gr.Row():
with gr.Column(scale=10):
msg = gr.Textbox(label="Prompt", placeholder="Enter prompt")
with gr.Row():
with gr.Column(min_width=0, scale=10):
submit_button = gr.Button("Submit Prompt")
return msg, submit_button
|