Asif Islam commited on
Commit
51abbbc
1 Parent(s): b90ea9a

Fixed disclaimer

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,5 +49,5 @@ qa = ConversationalRetrievalChain.from_llm(llm, retriever=retriever, memory=memo
49
  def queryAI(query: str):
50
  return qa({"question": query})["answer"]
51
 
52
- gui = gr.Interface(fn=queryAI, inputs="text", outputs="text", title="800 Codes Bot - EXPERIMENTAL", flagging_options=["Flag Correct/Helpful", "Flag Incorrect"])
53
  gui.launch()
 
49
  def queryAI(query: str):
50
  return qa({"question": query})["answer"]
51
 
52
+ gui = gr.Interface(fn=queryAI, inputs="text", outputs="text", title="800 Codes Bot - EXPERIMENTAL", description="This is an experimental bot to help students get help with the 800 codes which govern the student activity fees and service budget and student org funding. This is intended to be a helpful resource but its accuracy has not been verfied yet!", flagging_options=["Flag Correct/Helpful", "Flag Incorrect"])
53
  gui.launch()