sofzcc commited on
Commit
c087585
·
verified ·
1 Parent(s): 58eb910

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -204,6 +204,14 @@ def chat_respond(message: str, history):
204
  # GRADIO UI
205
  # -----------------------------
206
 
 
 
 
 
 
 
 
 
207
  chat = gr.ChatInterface(
208
  fn=chat_respond,
209
  title="Self-Service KB Assistant",
 
204
  # GRADIO UI
205
  # -----------------------------
206
 
207
+ description = """
208
+ Ask questions as if you were talking to a knowledge base assistant.
209
+
210
+ In a real scenario, this assistant would be connected to your own
211
+ help center or internal documentation. Here, it's using a small demo
212
+ knowledge base to show how retrieval-based self-service can work.
213
+ """
214
+
215
  chat = gr.ChatInterface(
216
  fn=chat_respond,
217
  title="Self-Service KB Assistant",