(
self,
chain_type: str,
retriever,
llm,
)
| 59 | |
| 60 | class CRChain(BaseQaChain): |
| 61 | def __init__( |
| 62 | self, |
| 63 | chain_type: str, |
| 64 | retriever, |
| 65 | llm, |
| 66 | ) -> None: |
| 67 | super().__init__(chain_type, retriever, llm) |
| 68 | |
| 69 | @property |
| 70 | def create_qa_chain(self): |