alexkueck commited on
Commit
d6acc70
1 Parent(s): 317583d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
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 machen möchtest!")
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.Interface(fn=translate, inputs="text", outputs="text")
 
 
168
  with gr.TabItem("Code-genereierungen"):
169
  with gr.Row():
170
- gr.Interface(fn=coding, inputs="text", outputs="text")
 
 
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,