Llama内容格式化器#
- class langchain_community.llms.azureml_endpoint.LlamaContentFormatter[source]#
已弃用:保留以向后兼容
Llama的内容格式化器。
属性
accepts
从端点返回的响应数据的MIME类型
content_formatter
content_type
传递给端点的输入数据的MIME类型
format_error_msg
supported_api_types
给定格式化程序支持的API。
方法
__init__
()escape_special_characters
(prompt)转义prompt中的任何特殊字符
format_request_payload
(prompt, model_kwargs, ...)根据所选的API格式化请求
format_response_payload
(output, api_type)格式化响应
- static escape_special_characters(prompt: str) str #
转义prompt中的任何特殊字符
- Parameters:
提示 (字符串)
- Return type:
字符串
- format_request_payload(prompt: str, model_kwargs: Dict, api_type: AzureMLEndpointApiType) bytes #
根据选择的API格式化请求
- Parameters:
prompt (str)
model_kwargs (Dict)
api_type (AzureMLEndpointApiType)
- Return type:
字节
- format_response_payload(output: bytes, api_type: AzureMLEndpointApiType) Generation #
格式化响应
- Parameters:
输出 (字节)
api_type (AzureMLEndpointApiType)
- Return type: