Deniel Dimitrov commited on
Commit
3edb4f8
·
1 Parent(s): a061b24

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -12
app.py CHANGED
@@ -7,20 +7,21 @@ def generate_seed(seed):
7
  return random.randint(0, 999999999)
8
  return seed
9
 
10
- # Create a seed input component
11
- seed_input = gr.components.Number(label="Seed (Set to -1 for random seed)", default=-1, step=1, min=-1)
12
- def generate_output(seed):
13
- seed = generate_seed(seed)
14
- return {"Generated Seed": seed}
15
 
16
- # Load the model (assuming the model file is present in the specified path)
17
- model_interface = gr.Interface.load("models/Linaqruf/anything-v3.0")
18
 
19
- # Create a combined interface
20
- combined_interface = gr.Interface(fn=generate_output, inputs=seed_input, outputs="text")
 
21
 
22
- # Combine the interfaces
23
- combined_interface.layout([seed_input, model_interface])
24
 
25
  # Launch the combined interface
26
- combined_interface.launch(enable_queue=False, share=False)
 
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)