Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -31,12 +31,10 @@ def process_pdf(uploaded_file, prompt):
|
|
31 |
return pdf_text
|
32 |
|
33 |
|
34 |
-
def suchen():
|
35 |
-
|
36 |
test = "hallo"
|
37 |
-
outputs= test
|
38 |
return test
|
39 |
-
|
40 |
|
41 |
with gr.Blocks() as demo:
|
42 |
gr.Markdown("Start typing below and then click **Run** to see the output.")
|
|
|
31 |
return pdf_text
|
32 |
|
33 |
|
34 |
+
def suchen(inputs):
|
|
|
35 |
test = "hallo"
|
|
|
36 |
return test
|
37 |
+
|
38 |
|
39 |
with gr.Blocks() as demo:
|
40 |
gr.Markdown("Start typing below and then click **Run** to see the output.")
|