Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
|
|
3 |
|
4 |
def get_api(inp):
|
5 |
r = requests.get(f'{inp}')
|
6 |
-
return (r.
|
7 |
|
8 |
with gr.Blocks() as app:
|
9 |
inp=gr.Textbox()
|
|
|
3 |
|
4 |
def get_api(inp):
|
5 |
r = requests.get(f'{inp}')
|
6 |
+
return (r.text)
|
7 |
|
8 |
with gr.Blocks() as app:
|
9 |
inp=gr.Textbox()
|