Deniel Dimitrov
commited on
Commit
·
3edb4f8
1
Parent(s):
a061b24
Update app.py
Browse files
app.py
CHANGED
@@ -7,20 +7,21 @@ def generate_seed(seed):
|
|
7 |
return random.randint(0, 999999999)
|
8 |
return seed
|
9 |
|
10 |
-
# Create a
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
|
16 |
-
#
|
17 |
-
|
18 |
|
19 |
-
|
20 |
-
|
|
|
21 |
|
22 |
-
#
|
23 |
-
|
24 |
|
25 |
# Launch the combined interface
|
26 |
-
|
|
|
7 |
return random.randint(0, 999999999)
|
8 |
return seed
|
9 |
|
10 |
+
# Create a text input component
|
11 |
+
text_input = gr.inputs.Textbox(label="Input Text")
|
12 |
+
|
13 |
+
# Create a number input component
|
14 |
+
seed_input = gr.inputs.Number(label="Seed (Set to -1 for random seed)", default=-1, step=1, min=-1)
|
15 |
|
16 |
+
# Create a button component
|
17 |
+
button = gr.inputs.Button(label="Process")
|
18 |
|
19 |
+
def generate_output(text, seed):
|
20 |
+
seed = generate_seed(seed)
|
21 |
+
return {"Input Text": text, "Generated Seed": seed}
|
22 |
|
23 |
+
# Create the combined interface
|
24 |
+
interface = gr.Interface(fn=generate_output, inputs=[text_input, seed_input, button], outputs="text")
|
25 |
|
26 |
# Launch the combined interface
|
27 |
+
interface.launch(enable_queue=False, share=False)
|