提示值#

class langchain_core.prompt_values.PromptValue[源代码]#

基础类: Serializable, ABC

任何语言模型输入的基抽象类。

PromptValues 可以转换为 LLM(纯文本生成)输入和 ChatModel 输入。

abstract to_messages() list[BaseMessage][source]#

将提示作为消息列表返回。

Return type:

列表[BaseMessage]

abstract to_string() str[source]#

返回提示值作为字符串。

Return type:

字符串