Spaces:
Runtime error
Runtime error
Create params.py
Browse files
params.py
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
load_js = """
|
4 |
+
function(text_input, url_params) {
|
5 |
+
console.log(text_input, url_params);
|
6 |
+
const params = new URLSearchParams(window.location.search);
|
7 |
+
url_params = Object.fromEntries(params);
|
8 |
+
return [text_input, url_params]
|
9 |
+
}
|
10 |
+
"""
|
11 |
+
def predict(text, url_params):
|
12 |
+
mod_url=""
|
13 |
+
mod=gr.HTML("")
|
14 |
+
out = None
|
15 |
+
valid=gr.update(visible=False)
|
16 |
+
mod_url = url_params.get('url')
|
17 |
+
return ["" + text + "", mod_url]
|
18 |
+
with gr.Blocks() as app:
|
19 |
+
with gr.Row(visible=False):
|
20 |
+
text_input=gr.Textbox()
|
21 |
+
text_output=gr.Textbox()
|
22 |
+
url_params = gr.JSON({}, visible=True, label="")
|
23 |
+
app.load(fn=predict, inputs=[text_input,url_params], outputs=[text_output,inp],_js=load_js)
|
24 |
+
|