t2ag3 commited on
Commit
4fc9a05
·
verified ·
1 Parent(s): 1caa1c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ def fetch_response(groq_api_key, user_input):
40
  ]
41
  )
42
  # ドキュメントのリストを渡せるchainを作成
43
- question_answer_chain = create_stuff_documents_chain(groq_chat, prompt)
44
  # RetrieverとQAチェーンを組み合わせてRAGチェーンを作成
45
  rag_chain = create_retrieval_chain(retriever, question_answer_chain)
46
 
 
40
  ]
41
  )
42
  # ドキュメントのリストを渡せるchainを作成
43
+ question_answer_chain = create_stuff_documents_chain(chat, prompt)
44
  # RetrieverとQAチェーンを組み合わせてRAGチェーンを作成
45
  rag_chain = create_retrieval_chain(retriever, question_answer_chain)
46