Update app.py
Browse files
app.py
CHANGED
|
@@ -7,58 +7,51 @@ For more information on `huggingface_hub` Inference API support, please check th
|
|
| 7 |
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
| 8 |
|
| 9 |
|
| 10 |
-
def
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
top_p=top_p,
|
| 36 |
-
):
|
| 37 |
-
token = message.choices[0].delta.content
|
| 38 |
-
|
| 39 |
-
response += token
|
| 40 |
-
yield response
|
| 41 |
|
| 42 |
|
| 43 |
"""
|
| 44 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
| 45 |
"""
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
gr.
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
)
|
| 59 |
-
|
| 60 |
-
)
|
| 61 |
-
|
| 62 |
|
| 63 |
if __name__ == "__main__":
|
| 64 |
demo.launch()
|
|
|
|
| 7 |
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
| 8 |
|
| 9 |
|
| 10 |
+
def fetch_response(user_input):
|
| 11 |
+
chat = ChatGroq(
|
| 12 |
+
api_key = groq_api_key,
|
| 13 |
+
model_name = model_name
|
| 14 |
+
)
|
| 15 |
+
system_prompt = (
|
| 16 |
+
"あなたは便利なアシスタントです。"
|
| 17 |
+
"マニュアルの内容から回答してください。"
|
| 18 |
+
"\n\n"
|
| 19 |
+
"{context}"
|
| 20 |
+
)
|
| 21 |
+
|
| 22 |
+
prompt = ChatPromptTemplate.from_messages(
|
| 23 |
+
[
|
| 24 |
+
("system", system_prompt),
|
| 25 |
+
("human", "{input}"),
|
| 26 |
+
]
|
| 27 |
+
)
|
| 28 |
+
# ドキュメントのリストを渡せるchainを作成
|
| 29 |
+
question_answer_chain = create_stuff_documents_chain(groq_chat, prompt)
|
| 30 |
+
# RetrieverとQAチェーンを組み合わせてRAGチェーンを作成
|
| 31 |
+
rag_chain = create_retrieval_chain(retriever, question_answer_chain)
|
| 32 |
+
|
| 33 |
+
response = rag_chain.invoke({"input": user_input})
|
| 34 |
+
return [response["answer"], response["context"][0], response["context"][1]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
|
| 36 |
|
| 37 |
"""
|
| 38 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
| 39 |
"""
|
| 40 |
+
with gr.Blocks() as demo:
|
| 41 |
+
gr.Markdown('''# SOP事業マスター \n
|
| 42 |
+
SOP作成研究に関して、公募要領やQAを参考にRAGを使って回答します。
|
| 43 |
+
''')
|
| 44 |
+
with gr.Row():
|
| 45 |
+
with gr.Column():
|
| 46 |
+
user_input = gr.Textbox(label="User Input")
|
| 47 |
+
submit = gr.Button("Submit")
|
| 48 |
+
answer = gr.Textbox(label="Answer")
|
| 49 |
+
with gr.Row():
|
| 50 |
+
with gr.Column():
|
| 51 |
+
source1 = gr.Textbox(label="回答ソース1")
|
| 52 |
+
with gr.Column():
|
| 53 |
+
source2 = gr.Textbox(label="回答ソース2")
|
| 54 |
+
submit.click(fetch_response, inputs=user_input, outputs=[answer, source1, source2])
|
|
|
|
| 55 |
|
| 56 |
if __name__ == "__main__":
|
| 57 |
demo.launch()
|