Deniel Dimitrov commited on
Commit
21d47c1
·
1 Parent(s): 39c3bc2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -2
app.py CHANGED
@@ -1,5 +1,21 @@
1
  import gradio as gr
 
2
 
3
- interface = gr.load("models/Linaqruf/anything-v3.0")
 
 
 
 
4
 
5
- interface.launch(enable_queue = False, share = False)
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ import random # Import random module for generating random seeds
3
 
4
+ # Function to generate a random seed if the given seed is -1
5
+ def generate_seed(seed):
6
+ if seed == -1:
7
+ return random.randint(0, 999999999)
8
+ return seed
9
 
10
+ # Define the interface
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.load("models/Linaqruf/anything-v3.0")
18
+
19
+ # Combine the interfaces and launch the model interface
20
+ model_interface.inputs = [seed_input] + model_interface.inputs
21
+ model_interface.launch(enable_queue=False, share=False)