Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ with gr.Blocks() as demo:
|
|
10 |
with gr.Row():
|
11 |
prompt = gr.Text(label="Enter Prompt In Your Local Language")
|
12 |
btn = gr.Button("Chat")
|
13 |
-
btn.click(iface, inputs=[
|
14 |
|
15 |
if __name__ == "__main__":
|
16 |
demo.queue(max_size=20).launch()
|
|
|
10 |
with gr.Row():
|
11 |
prompt = gr.Text(label="Enter Prompt In Your Local Language")
|
12 |
btn = gr.Button("Chat")
|
13 |
+
btn.click(iface, inputs=[prompt], outputs=[output])
|
14 |
|
15 |
if __name__ == "__main__":
|
16 |
demo.queue(max_size=20).launch()
|