Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -49,7 +49,7 @@ def get_code(query):
|
|
| 49 |
return data_df.iloc[similar_item_ids[0]]['function_body'] , data_df.iloc[similar_item_ids[0]]['file_path']
|
| 50 |
|
| 51 |
iface = gr.Interface(fn=get_code, inputs="text", outputs=[gr.Markdown(), gr.Textbox()])
|
| 52 |
-
iface.launch()
|
| 53 |
|
| 54 |
|
| 55 |
|
|
|
|
| 49 |
return data_df.iloc[similar_item_ids[0]]['function_body'] , data_df.iloc[similar_item_ids[0]]['file_path']
|
| 50 |
|
| 51 |
iface = gr.Interface(fn=get_code, inputs="text", outputs=[gr.Markdown(), gr.Textbox()])
|
| 52 |
+
iface.launch(debug=True)
|
| 53 |
|
| 54 |
|
| 55 |
|