mgokg commited on
Commit
af2239a
·
verified ·
1 Parent(s): d7b5b8e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -3
app.py CHANGED
@@ -34,10 +34,21 @@ prompt = ""
34
  def get_prompt():
35
  return prompt
36
 
37
- gr_interface = gr.chatbot(fn=get_prompt, inputs="text", outputs="text", live=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
38
 
39
- def start_gradio():
40
- gr_interface.launch()
41
 
42
  @app.get("/")
43
  def read_root():
 
34
  def get_prompt():
35
  return prompt
36
 
37
+ with gr.Blocks() as demo:
38
+ with gr.Row():
39
+ #details_output = gr.DataFrame(label="Ausgabe", elem_id="md")
40
+ details_output = gr.Textbox(label="Ausgabe")
41
+ with gr.Row():
42
+ ort_input = gr.Textbox(label="", placeholder="ask anything...")
43
+ with gr.Row():
44
+ button = gr.Button("Senden")
45
+
46
+ # Connect the button to the function
47
+ button.click(fn=get_prompt, inputs=ort_input, outputs=details_output)
48
+
49
+ # Launch the Gradio application
50
+ demo.launch()
51
 
 
 
52
 
53
  @app.get("/")
54
  def read_root():