muhyzatar commited on
Commit
792a6fc
1 Parent(s): a126962

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -2,10 +2,9 @@ import gradio as gr
2
  from gpt_s import GPT
3
 
4
  a_gpt = GPT()
5
- a_gpt.extract_insights(paragraph)
6
 
7
  def process(input_text):
8
- return a_gpt.extract_insights(paragraph)
9
 
10
  iface = gr.Interface(
11
  fn=process,
 
2
  from gpt_s import GPT
3
 
4
  a_gpt = GPT()
 
5
 
6
  def process(input_text):
7
+ return a_gpt.extract_insights(input_text)
8
 
9
  iface = gr.Interface(
10
  fn=process,