【AI】如何编写GPTs的Actions

这篇文章和上篇 利用GPTs的Actions 获取第三方数据有点类似, actions 都是基于三方接口去完成自己想要的功能,不同的是,上篇是在基于有 swagger json 或者 yaml 文档的情况下, 但是如果仅仅是一个 cURL 示例呢

js 复制代码
curl -X GET  \
  'https://eolink.o.apispace.com/456456/weather/v001/now?areacode=101010100&lonlat=116.407526,39.904030' \
  -H 'X-APISpace-Token:your key'

创建Actions

而在 GPTs Actions 创建的时候,Schema 要求的格式模板如下,json或者yaml文件都可以

json 复制代码
{
  "openapi": "3.1.0",
  "info": {
    "title": "Get weather data",
    "description": "Retrieves current weather data for a location.",
    "version": "v1.0.0"
  },
  "servers": [
    {
      "url": "https://weather.example.com"
    }
  ],
  "paths": {
    "/location": {
      "get": {
        "description": "Get temperature for a specific location",
        "operationId": "GetCurrentWeather",
        "parameters": [
          {
            "name": "location",
            "in": "query",
            "description": "The city and state to retrieve the weather for",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "deprecated": false
      }
    }
  },
  "components": {
    "schemas": {}
  }
}

我们需要将 cURL示例转换成Schmea要求的格式, 这个可以让gpt帮我们完成,当然也可以自己写代码去转换,

下面提供几个GPTs, 试了下,第二个效果最好,

OpenAPI Schmea GPTs

GPT Customizer,File Finder JSON Action Creator

ActionsGPT

请求的时候把请求响应体带上,保证schema的完整,我这里用的是第二个GPT Customizer,File Finder JSON Action Creator

在用其它的两个GPTs 转换的时候,发现碰到这个问题,个别单词转换错误, 对应是schemas,或者去掉 components

测试

小技巧

voxscript.awt.icu/swagger/v1/...

json后缀名改成yaml就可以直接改成yaml文件

相关推荐
这张生成的图像能检测吗9 小时前
(论文速读)EfficientTrain++: 高效视觉骨干训练的通用课程学习
人工智能·深度学习·计算机视觉·训练方法
晚霞的不甘11 小时前
CANN:华为全栈AI计算框架的深度解析(终极扩展版 · 完整篇)
人工智能·华为
lisw0513 小时前
6G频段与5G频段有何不同?
人工智能·机器学习
2501_9416233215 小时前
人工智能赋能智慧农业互联网应用:智能种植、农业数据分析与产量优化实践探索》
大数据·人工智能
不爱吃糖的程序媛15 小时前
华为 CANN:昇腾 AI 的异构计算架构核心与开源生态解析
人工智能·华为·架构
AKAMAI15 小时前
从客户端自适应码率流媒体迁移到服务端自适应码率流媒体
人工智能·云计算
jinxinyuuuus15 小时前
GTA 风格 AI 生成器:跨IP融合中的“视觉语义冲突”与风格适配损失
人工智能·网络协议
如何原谅奋力过但无声15 小时前
TensorFlow 1.x常用函数总结(持续更新)
人工智能·python·tensorflow
翔云 OCR API15 小时前
人脸识别API开发者对接代码示例
开发语言·人工智能·python·计算机视觉·ocr