ujin-song commited on
Commit
f1bf571
1 Parent(s): 34398fc

add one more text input

Browse files
Files changed (1) hide show
  1. app.py +16 -8
app.py CHANGED
@@ -64,14 +64,22 @@ with gr.Blocks(css=css) as demo:
64
  """)
65
 
66
  with gr.Row():
67
-
68
- prompt = gr.Text(
69
- label="Prompt",
70
- show_label=False,
71
- max_lines=1,
72
- placeholder="Enter your prompt",
73
- container=False,
74
- )
 
 
 
 
 
 
 
 
75
 
76
  run_button = gr.Button("Run", scale=0)
77
 
 
64
  """)
65
 
66
  with gr.Row():
67
+
68
+ with gr.Column():
69
+ prompt = gr.Text(
70
+ label="Prompt",
71
+ show_label=False,
72
+ max_lines=1,
73
+ placeholder="Enter your prompt",
74
+ container=False,
75
+ )
76
+ prompt2 = gr.Text(
77
+ label="Prompt2",
78
+ show_label=False,
79
+ max_lines=1,
80
+ placeholder="Enter your prompt for right character",
81
+ container=False,
82
+ )
83
 
84
  run_button = gr.Button("Run", scale=0)
85