langchain/templates/vertexai-chuck-norris/vertexai_chuck_norris/chain.py

12 lines
364 B
Python
Raw Normal View History

from langchain_community.chat_models import ChatVertexAI
2024-01-03 21:28:05 +00:00
from langchain_core.prompts import ChatPromptTemplate
_prompt = ChatPromptTemplate.from_template(
"Tell me a joke about Chuck Norris and {text}"
)
_model = ChatVertexAI()
# if you update this, you MUST also update ../pyproject.toml
# with the new `tool.langserve.export_attr`
chain = _prompt | _model