本文介绍AI 请求/响应智能转换。
简介
低代码开发插件,通过LLM对请求/响应的header以及body进行修改。其原理为在请求/响应阶段调用LLM对请求/响应的header以及body进行转换,如下图所示。
配置说明
名称 | 数据类型 | 填写要求 | 默认值 | 描述 |
| bool | 必填 | - | 是否在request阶段开启转换 |
| string | 必填 | - | request阶段转换使用的prompt |
| string | 必填 | - | 是否在response阶段开启转换 |
| string | 必填 | - | response阶段转换使用的prompt |
| string | 必填 | - | DNS类型的服务名,目前仅支持通义千问 |
| string | 必填 | - | LLM服务域名 |
| string | 必填 | - | 阿里云dashscope服务的API Key |
配置示例
request:
enable: false
prompt: "如果请求path是以/httpbin开头的,帮我去掉/httpbin前缀,其他的不要改。"
response:
enable: true
prompt: "帮我修改以下HTTP应答信息,要求:1. content-type修改为application/json;2. body由xml转化为json;3. 移除content-length。"
provider:
serviceName: qwen
domain: dashscope.aliyuncs.com
apiKey: xxxxxxxxxxxxx
访问原始的httpbin的/xml
接口,结果为:
<?xml version='1.0' encoding='us-ascii'?>
<!-- A SAMPLE set of slides -->
<slideshow
title="Sample Slide Show"
date="Date of publication"
author="Yours Truly"
>
<!-- TITLE SLIDE -->
<slide type="all">
<title>Wake up to WonderWidgets!</title>
</slide>
<!-- OVERVIEW -->
<slide type="all">
<title>Overview</title>
<item>Why <em>WonderWidgets</em> are great</item>
<item/>
<item>Who <em>buys</em> WonderWidgets</item>
</slide>
</slideshow>
使用以上配置,通过网关访问httpbin的/xml
接口,结果为:
{
"slideshow": {
"title": "Sample Slide Show",
"date": "Date of publication",
"author": "Yours Truly",
"slides": [
{
"type": "all",
"title": "Wake up to WonderWidgets!"
},
{
"type": "all",
"title": "Overview",
"items": [
"Why <em>WonderWidgets</em> are great",
"",
"Who <em>buys</em> WonderWidgets"
]
}
]
}
}
文档内容是否对您有帮助?