Prompty#
- class langchain_prompty.core.Prompty[source]#
基础类:
BaseModel
基础提示模型。
通过解析和验证来自关键字参数的输入数据来创建一个新模型。
如果输入数据无法验证以形成有效模型,则引发 [ValidationError][pydantic_core.ValidationError]。
self 被显式地设为仅位置参数,以允许 self 作为字段名称。
- param authors: List[str] = []#
- param base: str = ''#
- param content: str = ''#
- param description: str = ''#
- param file: FilePath = ''#
- Constraints:
path_type = file
- param inputs: Dict[str, PropertySettings] = {}#
- param model: ModelSettings [Optional]#
- param name: str = ''#
- param outputs: Dict[str, PropertySettings] = {}#
- param sample: dict = {}#
- param tags: List[str] = []#
- param template: TemplateSettings [Required]#
- param version: str = ''#