langchain_community.llms.azureml_endpoint.CustomOpenAIContentFormatter

class langchain_community.llms.azureml_endpoint.CustomOpenAIContentFormatter[source]

为类似于OpenAI API方案建模的模型的格式化内容。

属性

accepts

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

content_type

端点接收输入数据的MIME类型

format_error_msg

supported_api_types

给定格式器的支持API

方法

__init__()

escape_special_characters(提示)

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

format_request_payload(提示,model_kwargs,...)

根据所选API格式请求

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]

根据所选API格式请求

参数
返回类型

bytes

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

格式化响应

参数
返回类型

生成

使用 CustomOpenAIContentFormatter 的示例