File size: 874 Bytes
0533e7c 21d47c1 0533e7c 21d47c1 92c0155 3edb4f8 a48e1fe 21d47c1 3edb4f8 21d47c1 3edb4f8 a061b24 3edb4f8 a061b24 3edb4f8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import gradio as gr
import random # Import random module for generating random seeds
# Function to generate a random seed if the given seed is -1
def generate_seed(seed):
if seed == -1:
return random.randint(0, 999999999)
return seed
# Create a text input component
text_input = gr.inputs.Textbox(label="Input Text")
# Create a number input component
seed_input = gr.inputs.Number(label="Seed (Set to -1 for random seed)", default=-1, min=-1)
# Create a button component
button = gr.inputs.Button(label="Process")
def generate_output(text, seed):
seed = generate_seed(seed)
return {"Input Text": text, "Generated Seed": seed}
# Create the combined interface
interface = gr.Interface(fn=generate_output, inputs=[text_input, seed_input, button], outputs="text")
# Launch the combined interface
interface.launch(enable_queue=False, share=False)
|