andreska commited on
Commit
23bb001
·
verified ·
1 Parent(s): fbe42cd

Fixed broken function

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
- def analyze(input_text):
4
- return your_model.predict(input_text)
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,