No | 動画リンク | 解説補足ページ |
---|---|---|
1 | MyGPT作成手順 【基本編】 | リンク |
2 | MyGPT作成手順 【データ登録編】 | リンク |
3 | MyGPT作成手順 【Custom Action編】 | リンク |
<https://chat.openai.com/gpts/discovery>
ChatGPT
の有料版
のアカウントでログインした状態
で、上記のURLにアクセスする。なお、上記のURLには、こちらからアクセスできます。
https://dummy-access-token-site.vercel.app
{
"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"
}
}
}
}
}
}
ワンピースの名言を教えてください。