gokaygokay
commited on
Commit
•
4489ce8
1
Parent(s):
f8cf70e
lower case prompt
Browse files
app.py
CHANGED
@@ -68,7 +68,7 @@ def create_interface():
|
|
68 |
model = gr.Dropdown(label="Model", choices=["llama-3.1-70b-versatile", "mixtral-8x7b-32768", "llama-3.2-90b-text-preview"], value="llama-3.2-90b-text-preview")
|
69 |
with gr.Row():
|
70 |
# **Single Button for Generating Prompt and Text**
|
71 |
-
generate_button = gr.Button("
|
72 |
with gr.Row():
|
73 |
text_output = gr.Textbox(label="LLM Generated Text", lines=10, show_copy_button=True)
|
74 |
image_output = gr.Image(label="Generated Image", type="pil")
|
|
|
68 |
model = gr.Dropdown(label="Model", choices=["llama-3.1-70b-versatile", "mixtral-8x7b-32768", "llama-3.2-90b-text-preview"], value="llama-3.2-90b-text-preview")
|
69 |
with gr.Row():
|
70 |
# **Single Button for Generating Prompt and Text**
|
71 |
+
generate_button = gr.Button("Generate Prompt")
|
72 |
with gr.Row():
|
73 |
text_output = gr.Textbox(label="LLM Generated Text", lines=10, show_copy_button=True)
|
74 |
image_output = gr.Image(label="Generated Image", type="pil")
|