Today I learned you can use in-line type hints. Below you are specifying that the object react_prompt
is of type PromptTemplate
.
from langchain_core.prompts import PromptTemplate
from langchain import hub
= hub.pull("hwchase17/react") react_prompt: PromptTemplate