課題2-4 解答例

課題

GPTsのActionsで定義するJSONは以下のような形式になっています。
構成(スキーマ)がどのようになっているかを整理して出力してください。
* \`は バッククオート(`)のみに置き換えてください

\`\`\`
{
  "openapi": "3.1.0",
  "info": {
    "title": "Untitled",
    "description": "Your OpenAPI specification",
    "version": "v1.0.0"
  },
  "servers": [
    {
      "url": ""
    }
  ],
  "paths": {},
  "components": {
    "schemas": {}
  }
}
\`\`\`

\`\`\`天気の例
{
  "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": {}
  }
}
\`\`\`

プロンプト例

GPTsのActions(Function calling)で定義するJSONは以下のような形式になっています。
1. 構成(スキーマ)がどのようになっているかを整理して出力してください。
2. このスキーマに従って新たにJSONデータを作成する場合に必要な情報をリストアップしてください
3. 2をもとにもとのスキーマを構築する手順を丁寧かつ簡潔に教えてください
4. ここまでの内容を踏まえて新しいサイトのJSONを作成してください。まずはそのために必要な項目を埋めるためのフォームを作成してください(ユーザーがフォームを埋めて返します)

\`\`\`
{
  "openapi": "3.1.0",
  "info": {
    "title": "Untitled",
    "description": "Your OpenAPI specification",
    "version": "v1.0.0"
  },
  "servers": [
    {
      "url": ""
    }
  ],
  "paths": {},
  "components": {
    "schemas": {}
  }
}
\`\`\`

\`\`\`天気の例
{
  "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": {}
  }
}
\`\`\`
2024/06/30 01:04