Class PromptSelectorUtils
java.lang.Object
com.hw.langchain.chains.prompt.selector.PromptSelectorUtils
- Author:
- HamaWhite
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
Check if the language model is a chat model.static boolean
isLLM
(BaseLanguageModel llm) Check if the language model is a LLM.
-
Method Details
-
isLLM
Check if the language model is a LLM.- Parameters:
llm
- The language model to check.- Returns:
- true if the language model is a BaseLLM model, false otherwise.
-
isChatModel
Check if the language model is a chat model.- Parameters:
llm
- The language model to check.- Returns:
- true if the language model is a BaseChatModel model, false otherwise.
-