Spaces:
Runtime error
Runtime error
Fixed broken function
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
def analyze(
|
| 4 |
-
return
|
| 5 |
|
| 6 |
iface = gr.Interface(
|
| 7 |
fn=analyze,
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
+
def analyze(project_data, question):
|
| 4 |
+
return f"Returns: input"
|
| 5 |
|
| 6 |
iface = gr.Interface(
|
| 7 |
fn=analyze,
|