zcaspar commited on
Commit
1e25b55
·
1 Parent(s): 235dcad

Bodybuilding runner - Updates to bot name

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -19,8 +19,8 @@ def chatbot(input):
19
  messages.append({"role": "assistant", "content": reply})
20
  return reply
21
 
22
- inputs = gr.inputs.Textbox(lines=7, label="Your Bodybuilding Runner PT")
23
- outputs = gr.outputs.Textbox(label="Reply")
24
 
25
- iface = gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title="AI Chatbot", description="Ask anything you want", theme="compact").launch(share=False)
26
  iface.launch()
 
19
  messages.append({"role": "assistant", "content": reply})
20
  return reply
21
 
22
+ inputs = gr.inputs.Textbox(lines=7, label="Ask me anything about bodybuilding and running")
23
+ outputs = gr.outputs.Textbox(label="Response")
24
 
25
+ iface = gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title="Your Bodybuilding Runner Bot", description="Ask anything about bodybuilding and running", theme="compact").launch(share=False)
26
  iface.launch()