Uses of Class
com.hw.langchain.chains.llm.LLMChain
Packages that use LLMChain
Package
Description
-
Uses of LLMChain in com.hw.langchain.agents.agent
Constructors in com.hw.langchain.agents.agent with parameters of type LLMChainModifierConstructorDescriptionAgent
(LLMChain llmChain, List<String> allowedTools, AgentOutputParser outputParser) -
Uses of LLMChain in com.hw.langchain.agents.chat.base
Constructors in com.hw.langchain.agents.chat.base with parameters of type LLMChainModifierConstructorDescriptionChatAgent
(LLMChain llmChain, List<String> allowedTools, AgentOutputParser outputParser) -
Uses of LLMChain in com.hw.langchain.agents.mrkl.base
Constructors in com.hw.langchain.agents.mrkl.base with parameters of type LLMChainModifierConstructorDescriptionZeroShotAgent
(LLMChain llmChain, List<String> allowedTools) ZeroShotAgent
(LLMChain llmChain, List<String> allowedTools, AgentOutputParser outputParser) -
Uses of LLMChain in com.hw.langchain.chains.api.base
Constructors in com.hw.langchain.chains.api.base with parameters of type LLMChainModifierConstructorDescriptionApiChain
(LLMChain apiRequestChain, LLMChain apiAnswerChain, TextRequestsWrapper requestsWrapper, String apiDocs) -
Uses of LLMChain in com.hw.langchain.chains.combine.documents.stuff
Constructors in com.hw.langchain.chains.combine.documents.stuff with parameters of type LLMChainModifierConstructorDescriptionStuffDocumentsChain
(LLMChain llmChain, BasePromptTemplate documentPrompt, String documentVariableName, String documentSeparator) StuffDocumentsChain
(LLMChain llmChain, String documentVariableName) -
Uses of LLMChain in com.hw.langchain.chains.conversation.base
Subclasses of LLMChain in com.hw.langchain.chains.conversation.baseModifier and TypeClassDescriptionclass
Chain to have a conversation and load context from memory. -
Uses of LLMChain in com.hw.langchain.chains.llm.math.base
Constructors in com.hw.langchain.chains.llm.math.base with parameters of type LLMChain -
Uses of LLMChain in com.hw.langchain.chains.query.constructor.base
Methods in com.hw.langchain.chains.query.constructor.base that return LLMChainModifier and TypeMethodDescriptionstatic LLMChain
BaseUtils.loadQueryConstructorChain
(BaseLanguageModel llm, String documentContents, List<AttributeInfo> attributeInfo, List<Map<String, Object>> examples, List<Comparator> allowedComparators, List<Operator> allowedOperators, boolean enableLimit) Load a query constructor chain. -
Uses of LLMChain in com.hw.langchain.chains.sql.database.base
Constructors in com.hw.langchain.chains.sql.database.base with parameters of type LLMChainModifierConstructorDescriptionSQLDatabaseChain
(LLMChain llmChain, SQLDatabase database) SQLDatabaseSequentialChain
(SQLDatabaseChain sqlChain, LLMChain deciderChain) -
Uses of LLMChain in com.hw.langchain.retrievers.self.query.base
Constructors in com.hw.langchain.retrievers.self.query.base with parameters of type LLMChainModifierConstructorDescriptionSelfQueryRetriever
(VectorStore vectorStore, LLMChain llmChain, Visitor structuredQueryTranslator, boolean useOriginalQuery) SelfQueryRetriever
(VectorStore vectorStore, LLMChain llmChain, SearchType searchType, Map<String, Object> searchKwargs, Visitor structuredQueryTranslator, boolean useOriginalQuery)