Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
77 |
iface = gr.Interface(
|
78 |
fn=rag_chatbot_interface,
|
79 |
-
inputs=
|
80 |
-
outputs=
|
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()
|