FridayMaster commited on
Commit
67be4ed
·
verified ·
1 Parent(s): 09134b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,8 +19,8 @@ def generate_response(prompt):
19
  # Create a Gradio interface
20
  iface = gr.Interface(
21
  fn=generate_response,
22
- inputs=gr.inputs.Textbox(label="Enter your message", placeholder="Type something here..."),
23
- outputs=gr.outputs.Textbox(label="Response"),
24
  title="Chatbot Interface",
25
  description="Interact with the fine-tuned chatbot model."
26
  )
 
19
  # Create a Gradio interface
20
  iface = gr.Interface(
21
  fn=generate_response,
22
+ inputs=gr.Textbox(label="Enter your message", placeholder="Type something here..."),
23
+ outputs=gr.Textbox(label="Response"),
24
  title="Chatbot Interface",
25
  description="Interact with the fine-tuned chatbot model."
26
  )