Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -105,6 +105,7 @@ def process_input(user_input):
|
|
105 |
else:
|
106 |
return result_text, None
|
107 |
|
|
|
108 |
interface = gr.Interface(
|
109 |
fn=process_input,
|
110 |
inputs="text",
|
@@ -116,6 +117,7 @@ interface = gr.Interface(
|
|
116 |
description="Enter your research task (e.g., 'Get GDP data for the USA over the past 5 years and create a chart.')"
|
117 |
)
|
118 |
|
|
|
119 |
if __name__ == "__main__":
|
120 |
interface.launch()
|
121 |
|
|
|
105 |
else:
|
106 |
return result_text, None
|
107 |
|
108 |
+
|
109 |
interface = gr.Interface(
|
110 |
fn=process_input,
|
111 |
inputs="text",
|
|
|
117 |
description="Enter your research task (e.g., 'Get GDP data for the USA over the past 5 years and create a chart.')"
|
118 |
)
|
119 |
|
120 |
+
|
121 |
if __name__ == "__main__":
|
122 |
interface.launch()
|
123 |
|