Charlie Keegan
Results
2
comments of
Charlie Keegan
i am getting this same error with: ``` PROMPT = PromptTemplate(input_variables=["context", "question"], template=prompt_template) query_answer = RetrievalQA.from_chain_type( llm=bedrock_llm, chain_type="stuff", retriever=opensearch_vector_search_client.as_retriever(), return_source_documents=True, chain_type_kwargs={ "prompt": PROMPT, "verbose": True, }, verbose=True, ) response =...