File size: 269 Bytes
9ceeeea
 
021d2eb
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr

with gr.Blocks() as anything:
    prompt = gr.Textbox(label="Prompt")
    ngPrompt = gr.Textbox(label="Negative Prompt")
    btn = gr.Button(value="Submit")
    btn.click("models/Linaqruf/anything-v3.0", input=[prompt, ngPrompt])

anything.launch()