Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -86,7 +86,7 @@ def reset_chat():
|
|
| 86 |
with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
| 87 |
history = gr.State([])
|
| 88 |
user_question = gr.State("")
|
| 89 |
-
gr.Markdown("KIs am LI - wähle aus, was du
|
| 90 |
with gr.Tabs():
|
| 91 |
with gr.TabItem("LI-Chat"):
|
| 92 |
with gr.Row():
|
|
@@ -102,9 +102,9 @@ with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
|
| 102 |
user_input = gr.Textbox(
|
| 103 |
show_label=False, placeholder="Gib deinen Text / Frage ein."
|
| 104 |
).style(container=False)
|
| 105 |
-
with gr.Column(min_width=
|
| 106 |
submitBtn = gr.Button("Absenden")
|
| 107 |
-
with gr.Column(min_width=
|
| 108 |
cancelBtn = gr.Button("Stoppen")
|
| 109 |
with gr.Row(scale=1):
|
| 110 |
emptyBtn = gr.Button(
|
|
@@ -150,10 +150,10 @@ with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
|
| 150 |
|
| 151 |
with gr.TabItem("Übersetzungen"):
|
| 152 |
with gr.Row():
|
| 153 |
-
gr.
|
| 154 |
with gr.TabItem("Code-genereierungen"):
|
| 155 |
with gr.Row():
|
| 156 |
-
gr.
|
| 157 |
|
| 158 |
predict_args = dict(
|
| 159 |
fn=predict,
|
|
|
|
| 86 |
with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
| 87 |
history = gr.State([])
|
| 88 |
user_question = gr.State("")
|
| 89 |
+
gr.Markdown("KIs am LI - wähle aus, was du bzgl. KI machen möchtest!")
|
| 90 |
with gr.Tabs():
|
| 91 |
with gr.TabItem("LI-Chat"):
|
| 92 |
with gr.Row():
|
|
|
|
| 102 |
user_input = gr.Textbox(
|
| 103 |
show_label=False, placeholder="Gib deinen Text / Frage ein."
|
| 104 |
).style(container=False)
|
| 105 |
+
with gr.Column(min_width=100, scale=1):
|
| 106 |
submitBtn = gr.Button("Absenden")
|
| 107 |
+
with gr.Column(min_width=100, scale=1):
|
| 108 |
cancelBtn = gr.Button("Stoppen")
|
| 109 |
with gr.Row(scale=1):
|
| 110 |
emptyBtn = gr.Button(
|
|
|
|
| 150 |
|
| 151 |
with gr.TabItem("Übersetzungen"):
|
| 152 |
with gr.Row():
|
| 153 |
+
gr.label("Hier entsteht ein Übersetzer mit KI...")
|
| 154 |
with gr.TabItem("Code-genereierungen"):
|
| 155 |
with gr.Row():
|
| 156 |
+
gr.label("Hier entsteht eine KI zum Programmieren...")
|
| 157 |
|
| 158 |
predict_args = dict(
|
| 159 |
fn=predict,
|