add one more text input
Browse files
app.py
CHANGED
@@ -64,14 +64,22 @@ with gr.Blocks(css=css) as demo:
|
|
64 |
""")
|
65 |
|
66 |
with gr.Row():
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
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 |
|