langchain_community.llms.azureml_endpoint.ContentFormatterBase

class langchain_community.llms.azureml_endpoint.ContentFormatterBase[源代码]

将AzureML端点的请求和响应转换为所需的架构。

属性

接受

来自端点的响应数据的MIME类型

content_type

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

format_error_msg

supported_api_types

为给定格式化器支持的API。

方法

__init__()

escape_special_characters(prompt)

转义《prompt》中的任何特殊字符

format_request_payload(prompt, model_kwargs)

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

format_response_payload(output[, api_type])

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

__init__()
static escape_special_characters(prompt: str) str[源代码]

转义《prompt》中的任何特殊字符

参数

prompt (str) –

返回类型

str

format_request_payload(prompt: str, model_kwargs: Dict, api_type: AzureMLEndpointApiType = AzureMLEndpointApiType.dedicated) Any[源代码]

根据模型输入模式格式化请求体。以请求头中的content_type指定格式返回字节或可查找的文件对象。

参数
返回类型

任何

摘要 format_response_payload(output: bytes, api_type: AzureMLEndpointApiType = AzureMLEndpointApiType.dedicated) Generation[source]

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

参数
返回类型

生成

使用 ContentFormatterBase 的示例