ShermanAI commited on
Commit
6075bfe
·
1 Parent(s): b393e78

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ examples = [
32
  ["Can you explain the concept of electrical conductivity?", []],
33
  ["How do you calculate the force required to move an object?", []]
34
  ]
35
- inputs = [gr.inputs.Textbox(label="Enter your question: "), "state"]
36
  outputs = ["chatbot", "state"]
37
  interface = gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title=title, description=description, examples=examples)
38
  interface.launch(debug=True)
 
32
  ["Can you explain the concept of electrical conductivity?", []],
33
  ["How do you calculate the force required to move an object?", []]
34
  ]
35
+ inputs = [gr.inputs.Textbox(label="Enter your question: ", placeholder="Type your question here..."), "state"]
36
  outputs = ["chatbot", "state"]
37
  interface = gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title=title, description=description, examples=examples)
38
  interface.launch(debug=True)