get_output_parser#

langchain_google_vertexai.chains.get_output_parser(functions: Sequence[Type[BaseModel]]) BaseOutputParser | BaseGenerationOutputParser[source]#

根据用户函数获取适当的函数输出解析器。

Parameters:

functions (Sequence[Type[BaseModel]]) – 序列中的元素可以是字典、pydantic.BaseModel类,或者是Python函数。如果传入的是字典,则假定它已经是有效的OpenAI函数。

Returns:

一个 PydanticFunctionsOutputParser

Return type:

BaseOutputParser | BaseGenerationOutputParser