Saurabh46 commited on
Commit
d63e21e
·
1 Parent(s): 001d054

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -37,11 +37,11 @@ def chatbot(input_text):
37
 
38
  #Creating the web UIusing gradio
39
  iface = gradio.Interface(fn=chatbot,
40
- inputs=gradio.inputs.Textbox(lines=5, label="Enter your question here"),
41
  outputs="text",
42
- title="Custom-trained AI Chatbot")
43
 
44
- #Constructing indexes based on the documents in traininData folder
45
  #This can be skipped if you have already trained your app and need to re-run it
46
  index = construct_index("trainingData")
47
 
 
37
 
38
  #Creating the web UIusing gradio
39
  iface = gradio.Interface(fn=chatbot,
40
+ inputs=gradio.inputs.Textbox(lines=2, label="Enter your question here"),
41
  outputs="text",
42
+ title="My Custom-trained AI Chatbot")
43
 
44
+ #Constructing indexes based on the documents in trainingData folder
45
  #This can be skipped if you have already trained your app and need to re-run it
46
  index = construct_index("trainingData")
47