MCPcopy Create free account
hub / github.com/CL-lau/SQL-GPT / __init__

Method __init__

gpt/docGPT.py:39–47  ·  view source on GitHub ↗
(
        self,
        chain_type: str,
        retriever,
        llm,
        chain_type_kwargs: dict
    )

Source from the content-addressed store, hash-verified

37
38class RChain(BaseQaChain):
39 def __init__(
40 self,
41 chain_type: str,
42 retriever,
43 llm,
44 chain_type_kwargs: dict
45 ) -> None:
46 super().__init__(chain_type, retriever, llm)
47 self.chain_type_kwargs = chain_type_kwargs
48
49 @property
50 def create_qa_chain(self) -> RetrievalQA:

Callers 1

__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected