{
  "post": {
    "tags": ["AI"],
    "summary": "Generate quotes from topic",
    "security": [
      {
        "ApiKeyAuth": []
      }
    ],
    "requestBody": {
      "required": true,
      "content": {
        "application/json": {
          "schema": {
            "$ref": "../../components/schemas/GenerateQuotesRequest.json"
          }
        }
      }
    },
    "responses": {
      "200": {
        "summary": "Successful Operation.",
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "message": {
                  "type": "string",
                  "example": "Quotes generated successfully"
                },
                "data": {
                  "type": "string",
                  "example": "Since the format is undefined, I'll generate 10 relatively short and varied Happy Birthday quotes.  There's no constraint on length:\n\n1. Happy Birthday!\n2. Wishing you joy today.\n3. Happy Birthday, friend!\n4. Celebrate your special day!\n5. Have a fantastic birthday!\n6. Many happy returns!\n7. Cheers to another year!\n8. Wishing you all the best!\n9. Enjoy your birthday party!\n10. Happy Birthday to you!\n"
                }
              }
            }
          }
        }
      }
    }
  }
}
