前回の動画

No 動画リンク 解説補足ページ
1 MyGPT作成手順 【基本編】 リンク
2 MyGPT作成手順 【データ登録編】 リンク
3 MyGPT作成手順 【Custom Action編】 リンク

MyGPT

<https://chat.openai.com/gpts/discovery>

ChatGPT有料版のアカウントでログインした状態で、上記のURLにアクセスする。なお、上記のURLには、こちらからアクセスできます。

ACCESS トークンの認証に利用するサイト

https://dummy-access-token-site.vercel.app

Action Schema

{
  "openapi": "3.1.0",
  "info": {
    "title": "ワンピース名言集",
    "description": "ワンピースの名言をランダムに取得します。",
    "version": "v1.0.0"
  },
  "servers": [
    {
      "url": "<https://dummy-access-token-site.vercel.app>"
    }
  ],
  "paths": {
    "/auth_page": {
      "get": {
        "description": "ワンピースの名言をランダムに取得する",
        "operationId": "GetOnePieceWisdom",
        "responses": {
          "200": {
            "description": "データの取得に成功しました",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetOnePieceWisdomResponse"
                }
              }
            }
          },
          "404": {
            "description": "名言が見つかりませんでした",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    }
  },
  "components": {
    "schemas": {
      "GetOnePieceWisdomResponse": {
        "type": "object",
        "properties": {
          "quote": {
            "type": "string"
          },
          "author": {
            "type": "string"
          },
          "reference": {
            "type": "string"
          }
        }
      },
      "ErrorResponse": {
        "type": "object",
        "properties": {
          "error": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      }
    }
  }
}

「名言博士」へのプロンプト

ワンピースの名言を教えてください。