Update app.py
Browse files
app.py
CHANGED
@@ -637,18 +637,32 @@ with gr.Blocks(css=customCSS, theme=small_and_beautiful_theme) as demo:
|
|
637 |
gr.Slider(label="Top-p (nucleus sampling)", value=0.6, minimum=0.0, maximum=1, step=0.05, interactive=True, info="Höhere Werte verwenden auch Tokens mit niedrigerer Wahrscheinlichkeit.", visible=True),
|
638 |
gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Strafe für wiederholte Tokens", visible=True)
|
639 |
]
|
|
|
|
|
640 |
with gr.Tab("KI zum Zeichnen"):
|
641 |
with gr.Row():
|
642 |
gr.HTML("LI Zeichnen mit KI")
|
643 |
status_display2 = gr.Markdown("Success", elem_id="status_display")
|
644 |
gr.Markdown(description2)
|
645 |
with gr.Row():
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
|
653 |
######################################
|
654 |
# Events und Übergabe Werte an Funktionen
|
|
|
637 |
gr.Slider(label="Top-p (nucleus sampling)", value=0.6, minimum=0.0, maximum=1, step=0.05, interactive=True, info="Höhere Werte verwenden auch Tokens mit niedrigerer Wahrscheinlichkeit.", visible=True),
|
638 |
gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Strafe für wiederholte Tokens", visible=True)
|
639 |
]
|
640 |
+
#damit der Prompt auch nach dem upload in die History noch für predicts_args verfügbar ist
|
641 |
+
user_question2 = gr.State("")
|
642 |
with gr.Tab("KI zum Zeichnen"):
|
643 |
with gr.Row():
|
644 |
gr.HTML("LI Zeichnen mit KI")
|
645 |
status_display2 = gr.Markdown("Success", elem_id="status_display")
|
646 |
gr.Markdown(description2)
|
647 |
with gr.Row():
|
648 |
+
with gr.Column(scale=5):
|
649 |
+
with gr.Row():
|
650 |
+
chatbot_bild = gr.Chatbot(elem_id="li-zeichnen")
|
651 |
+
with gr.Row():
|
652 |
+
with gr.Column(scale=12):
|
653 |
+
user_input2 = gr.Textbox(
|
654 |
+
show_label=False, placeholder="Gib hier deinen Prompt ein...",
|
655 |
+
container=False
|
656 |
+
)
|
657 |
+
with gr.Column(min_width=70, scale=1):
|
658 |
+
submitBtn2 = gr.Button("Senden")
|
659 |
+
with gr.Column(min_width=70, scale=1):
|
660 |
+
cancelBtn2 = gr.Button("Stop")
|
661 |
+
with gr.Row():
|
662 |
+
emptyBtn2 = gr.ClearButton([user_input, chatbot, history, file_display, image_display], value="🧹 Neue Session", scale=10)
|
663 |
+
additional_inputs_accordion = gr.Accordion(label="Weitere Eingaben...", open=False)
|
664 |
+
|
665 |
+
|
666 |
|
667 |
######################################
|
668 |
# Events und Übergabe Werte an Funktionen
|