seawolf2357 commited on
Commit
000e3df
Β·
verified Β·
1 Parent(s): 1ed0d57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -73,13 +73,13 @@ def rag_chatbot_interface(prompt: str, k: int = 2):
73
  # Define system prompt for the chatbot
74
  SYS_PROMPT = "You are an assistant for answering questions. You are given the extracted parts of a long document and a question. Provide a conversational answer. If you don't know the answer, just say 'I do not know.' Don't make up an answer."
75
 
76
- # Set up Gradio interface
77
  iface = gr.Interface(
78
  fn=rag_chatbot_interface,
79
- inputs=gr.inputs.Textbox(label="Enter your question"),
80
- outputs=gr.outputs.Textbox(label="Answer"),
81
  title="Retrieval-Augmented Generation Chatbot",
82
- description="This chatbot uses a retrieval-augmented generation approach to provide more accurate answers. It first searches for relevant documents and then generates a response based on the prompt and the retrieved documents."
83
  )
84
 
85
  iface.launch()
 
73
  # Define system prompt for the chatbot
74
  SYS_PROMPT = "You are an assistant for answering questions. You are given the extracted parts of a long document and a question. Provide a conversational answer. If you don't know the answer, just say 'I do not know.' Don't make up an answer."
75
 
76
+
77
  iface = gr.Interface(
78
  fn=rag_chatbot_interface,
79
+ inputs="text", # ν…μŠ€νŠΈ μž…λ ₯
80
+ outputs="text", # ν…μŠ€νŠΈ 좜λ ₯
81
  title="Retrieval-Augmented Generation Chatbot",
82
+ description="This is a chatbot that uses a retrieval-augmented generation approach to provide more accurate answers. It first searches for relevant documents and then generates a response based on the prompt and the retrieved documents."
83
  )
84
 
85
  iface.launch()