Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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(
|
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,
|