svjack commited on
Commit
5245e53
·
1 Parent(s): f20ae9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -61,10 +61,10 @@ with block:
61
  model_list = list(map(lambda x: os.path.join("models", x), os.listdir("models")))
62
  assert model_list
63
  model_path = gr.Dropdown(
64
- model_list, value = model_list[1],
65
  label="GGML Models"
66
  )
67
- prompt = gr.Textbox(label="Prompt", value = "Anthropomorphic cat dressed as a fire fighter")
68
  run_button = gr.Button(label="Run")
69
  with gr.Accordion("Advanced options", open=False):
70
  num_samples = gr.Slider(label="Images", minimum=1, maximum=12, value=1, step=1)
 
61
  model_list = list(map(lambda x: os.path.join("models", x), os.listdir("models")))
62
  assert model_list
63
  model_path = gr.Dropdown(
64
+ model_list, value = model_list[0],
65
  label="GGML Models"
66
  )
67
+ prompt = gr.Textbox(label="Prompt", value = "A lovely cat drinking a cup of tea")
68
  run_button = gr.Button(label="Run")
69
  with gr.Accordion("Advanced options", open=False):
70
  num_samples = gr.Slider(label="Images", minimum=1, maximum=12, value=1, step=1)