Update app.py
Browse files
app.py
CHANGED
@@ -82,8 +82,8 @@ input_textbox = gr.Textbox(label="Type your query here:", placeholder="Hi", line
|
|
82 |
output_textbox = gr.Textbox(label="Type your query here:", placeholder="Hi", lines=5)
|
83 |
gr.Interface(
|
84 |
fn=alfred_response,
|
85 |
-
inputs=
|
86 |
-
outputs=
|
87 |
title="Party Organizer Helper",
|
88 |
description="Helps you answer with different asks during Party",
|
89 |
examples=[["Whats weather now in Bangalore?"], ["The weather in Bangalore is Rainy with a temperature of 15°C."]],
|
|
|
82 |
output_textbox = gr.Textbox(label="Type your query here:", placeholder="Hi", lines=5)
|
83 |
gr.Interface(
|
84 |
fn=alfred_response,
|
85 |
+
inputs="text",
|
86 |
+
outputs="text",
|
87 |
title="Party Organizer Helper",
|
88 |
description="Helps you answer with different asks during Party",
|
89 |
examples=[["Whats weather now in Bangalore?"], ["The weather in Bangalore is Rainy with a temperature of 15°C."]],
|