langchain_community.llms.azureml_endpoint.DollyContentFormatter

class langchain_community.llms.azureml_endpoint.DollyContentFormatter[source]

Dolly-v2-12b模型的Content处理器

属性

accepts

从端点返回的响应数据的MIME类型

content_type

传递给端点的输入数据的MIME类型

format_error_msg

supported_api_types

给定格式化器的支持API。

方法

__init__()

escape_special_characters(提示)

提示 中的任何特殊字符进行转义

format_request_payload(提示,  model_kwargs,  ...)

根据模型输入模式格式化请求体

format_response_payload(输出,  api_type)

根据模型输出模式格式化响应体

__init__()
static escape_special_characters(prompt: str) str

提示 中的任何特殊字符进行转义

参数

prompt (str) –

返回类型

str

format_request_payload(prompt: str, model_kwargs: Dict, api_type: AzureMLEndpointApiType) bytes[source]

根据模型输入模式格式化请求体。返回字节或可寻址文件对象,格式由内容类型请求头指定。

参数
返回类型

bytes

format_response_payload(output: bytes, api_type: AzureMLEndpointApiType) Generation[来源]

按照模型的输出模式格式化响应体。返回从响应中接收到的数据类型。

参数
返回类型

生成

使用DollyContentFormatter的示例