机器人聊天,智能助手,内容生成,智能办公,智能辅助,智能搜索
一、接口介绍
通过接收用户提出的问题、输入的图片和文档等需求,准确识别其对话意图,并触发相应的回复。同时,整合了API行业独有的数据,提供针对性的信息或解决方案,为用户提供更高质量的输出内容。其在搜索问答、内容创作生成和智能办公等众多领域都有更广阔的想象空间和应用场景。
二、功能体验
为用户提供更加美观和富有创意的二维码
三、产品特点
产品特色
1、多场景应用
支持快递、天气、日历、旅游、交通、新闻资讯、企业信息和娱乐闲聊等20多个常见领域的应用
2、对接简单
十分钟接入,提供易源单独封装的SDK,开箱即用
3、个性化对话体验
通过准确地理解用户意图,生成精准的回复内容。
4、专属AI机器人
上传自己的文档,基于知识库快速训练符合自己要求的AI机器人
四、应用场景:
搜索问答:在搜索引擎或问答平台中,通过用户提出的问题,准确识别意图,并提供相关的答案和解决方案。
内容创作生成:为内容创作者提供辅助工具,根据用户输入的问题或需求,生成相关的内容片段、文章结构或创意灵感。
智能办公:在办公场景中,通过对话交互,帮助用户完成日常任务、查询信息、管理日程等工作。
客户服务与支持:用于构建智能客服或虚拟助手,能够理解用户的问题并提供准确的解答或协助。
语义分析与知识图谱:通过对话分析和意图识别,辅助构建知识图谱、语义理解模型或信息检索系统。
智能助理:将该接口集成到智能助理应用中,使用户能够通过对话与助理进行自然交互。用户可以提出问题、请求帮助、获取信息等,接口能够识别用户的意图并给出准确的回复或执行相应的操作。
五、API文档
4.1 提交创作任务
4.1.1接入点说明
识别对话中的命令或意图,并根据意图选择合适的应用获取相应的服务,以满足相应的需求或要求。
4.1.2接口地址
https://route.showapi.com/3054-1?showapi_appid=替换自己的值&showapi_sign=替换自己的值。
4.1.3返回格式
Json
//更多说明请访问仓库地址:https://github.com/showapi-public/showapi_sdk_java
//Maven仓库:https://mvnrepository.com/artifact/com.showapi.javasdk/showapi_java_sdk/1.0.0
//这里需要替换为你自己的showapi_appid和showapi_sign,你可以在这里找到 https://www.showapi.com/console#/myApp
String res=new ShowApiRequest("http://route.showapi.com/3054-1","showapi_appid","showapi_sign")
.addTextPara("text","帮我查找一下昆明今天的天气")
.addBase64Para("args_list",new File("filePath"))//需要转换为Base64的文件对象,filePath为绝对路径
.post();
System.out.println(res);
返回示例
{
"showapi_res_error": "",
"showapi_fee_num": 1,
"showapi_res_code": 0,
"showapi_res_id": "6513cf310de3769f17fc38b0",
"showapi_res_body": {
"result": [
{
"area": "昆明",
"areaCode": "530100",
"areaid": "101290101",
"dayList": [
{
"night_weather_code": "03",
"day_weather": "多云",
"night_weather": "阵雨",
"areaCode": "530100",
"night_wind_power": "0-3级",
"areaid": "101290101",
"day_wind_power": "0-3级",
"day_weather_code": "01",
"daytime": "20230927",
"day_weather_pic": "http://app1.showapi.com/weather/icon/day/01.png",
"area": "昆明",
"night_air_temperature": "16",
"day_wind_direction": "东南风",
"day_air_temperature": "24",
"night_weather_pic": "http://app1.showapi.com/weather/icon/night/03.png",
"night_wind_direction": "东风"
},
{
"night_weather_code": "01",
"day_weather": "多云",
"night_weather": "多云",
"areaCode": "530100",
"night_wind_power": "0-3级",
"areaid": "101290101",
"day_wind_power": "0-3级",
"day_weather_code": "01",
"daytime": "20230928",
"day_weather_pic": "http://app1.showapi.com/weather/icon/day/01.png",
"area": "昆明",
"night_air_temperature": "17",
"day_wind_direction": "东南风",
"day_air_temperature": "24",
"night_weather_pic": "http://app1.showapi.com/weather/icon/night/01.png",
"night_wind_direction": "东南风"
},
{
"night_weather_code": "01",
"day_weather": "多云",
"night_weather": "多云",
"areaCode": "530100",
"night_wind_power": "0-3级",
"areaid": "101290101",
"day_wind_power": "0-3级",
"day_weather_code": "01",
"daytime": "20230929",
"day_weather_pic": "http://app1.showapi.com/weather/icon/day/01.png",
"area": "昆明",
"night_air_temperature": "16",
"day_wind_direction": "南风",
"day_air_temperature": "25",
"night_weather_pic": "http://app1.showapi.com/weather/icon/night/01.png",
"night_wind_direction": "南风"
}
]
}
],
"ret_code": 0,
"intent": {
"args": {
"area": "昆明",
"date": "今天,后天"
},
"name": "weather"
},
"reply_msg": {
"text": "2023年09月27日昆明的天气:预计白天气温:24℃,多云,东南风0-3级,夜间气温:16℃,阵雨,东风0-3级;2023年09月28日昆明的天气:预计白天气温:24℃,多云,东南风0-3级,夜间气温:17℃,多云,东南风0-3级;2023年09月29日昆明的天气:预计白天气温:25℃,多云,南风0-3级,夜间气温:16℃,多云,南风0-3级。",
"img_list": {},
"audio_list": {},
"video_list": {}
}
}
}
意图分析接入点请前往下图红框的官网查看