Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -100,7 +100,7 @@ def coding():
|
|
| 100 |
with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
| 101 |
history = gr.State([])
|
| 102 |
user_question = gr.State("")
|
| 103 |
-
gr.Markdown("KIs am LI - wähle aus, was du bzgl. KI
|
| 104 |
with gr.Tabs():
|
| 105 |
with gr.TabItem("LI-Chat"):
|
| 106 |
with gr.Row():
|
|
@@ -164,10 +164,14 @@ with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
|
| 164 |
|
| 165 |
with gr.TabItem("Übersetzungen"):
|
| 166 |
with gr.Row():
|
| 167 |
-
gr.
|
|
|
|
|
|
|
| 168 |
with gr.TabItem("Code-genereierungen"):
|
| 169 |
with gr.Row():
|
| 170 |
-
gr.
|
|
|
|
|
|
|
| 171 |
|
| 172 |
predict_args = dict(
|
| 173 |
fn=predict,
|
|
|
|
| 100 |
with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
| 101 |
history = gr.State([])
|
| 102 |
user_question = gr.State("")
|
| 103 |
+
gr.Markdown("KIs am LI - wähle aus, was du bzgl. KI-Bots ausprobieren möchtest!")
|
| 104 |
with gr.Tabs():
|
| 105 |
with gr.TabItem("LI-Chat"):
|
| 106 |
with gr.Row():
|
|
|
|
| 164 |
|
| 165 |
with gr.TabItem("Übersetzungen"):
|
| 166 |
with gr.Row():
|
| 167 |
+
gr.Textbox(
|
| 168 |
+
show_label=False, placeholder="Ist noch in Arbeit..."
|
| 169 |
+
).style(container=False)
|
| 170 |
with gr.TabItem("Code-genereierungen"):
|
| 171 |
with gr.Row():
|
| 172 |
+
gr.Textbox(
|
| 173 |
+
show_label=False, placeholder="Ist noch in Arbeit..."
|
| 174 |
+
).style(container=False)
|
| 175 |
|
| 176 |
predict_args = dict(
|
| 177 |
fn=predict,
|