Spaces:
Build error
Build error
kwabs22 commited on
Commit ·
bfa21bf
1
Parent(s): 0020877
More prompt buttons?
Browse files
app.py
CHANGED
|
@@ -247,6 +247,15 @@ Allprompts = {
|
|
| 247 |
]
|
| 248 |
}
|
| 249 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 250 |
with gr.Blocks() as iface:
|
| 251 |
with gr.Tab("Single prompt"):
|
| 252 |
gr.HTML("<a href='https://huggingface.co/spaces/stabilityai/stablelm-2-1_6b-zephyr'> -- Original StabilityAI demo -- </a> | ")
|
|
@@ -274,6 +283,7 @@ with gr.Blocks() as iface:
|
|
| 274 |
|
| 275 |
|
| 276 |
with gr.Tab("Workflow Brainstom"):
|
| 277 |
-
gr.HTML("Workflow = premeditated events --- need a timeline before prompts")
|
|
|
|
| 278 |
|
| 279 |
iface.queue().launch(server_name="0.0.0.0", share=True)
|
|
|
|
| 247 |
]
|
| 248 |
}
|
| 249 |
|
| 250 |
+
AllWorkflows = {
|
| 251 |
+
"Merged Spelling": [
|
| 252 |
+
"Please make an image description the meaning of the word much",
|
| 253 |
+
"next please find english words close in spelling to henduo",
|
| 254 |
+
"great, next make an image description using those words",
|
| 255 |
+
"Thanks lets now merge the two seperate image descriptions together",
|
| 256 |
+
]
|
| 257 |
+
}
|
| 258 |
+
|
| 259 |
with gr.Blocks() as iface:
|
| 260 |
with gr.Tab("Single prompt"):
|
| 261 |
gr.HTML("<a href='https://huggingface.co/spaces/stabilityai/stablelm-2-1_6b-zephyr'> -- Original StabilityAI demo -- </a> | ")
|
|
|
|
| 283 |
|
| 284 |
|
| 285 |
with gr.Tab("Workflow Brainstom"):
|
| 286 |
+
gr.HTML("Workflow = premeditated events --- need a timeline before prompts --- eg. old conversation that needs to be repeated over and over again")
|
| 287 |
+
|
| 288 |
|
| 289 |
iface.queue().launch(server_name="0.0.0.0", share=True)
|