langchain_community.llms.sagemaker_endpoint
.ContentHandlerBase¶
- class langchain_community.llms.sagemaker_endpoint.ContentHandlerBase[source]¶
用于将LLM输入转换为SageMaker端点期望的格式的处理类。
同样,该类还处理将SageMaker端点的输出转换为LLM类期望的格式。
属性
accepts
端点返回的数据的MIME类型
content_type
传递给端点的输入数据的MIME类型
方法
__init__
()transform_input
(prompt, model_kwargs)将输入转换为模型可以接受作为请求体的格式。
transform_output
(output)将模型的输出转换为LLM类期望的字符串。
- __init__()¶