# 博客标题和大纲

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /webhook/titles-outlines:
    post:
      summary: 博客标题和大纲
      deprecated: false
      description: >
        有时您需要一个框架来开始内容创建。最简单的方法之一是输入您有兴趣撰写的主题，然后让人工智能完成剩下的工作，提出一个帖子标题和您可以撰写的几个部分。以下是如何使用该模型。


        请为主题添加博客的主题。对于我们收到的响应的示例，我们使用“前往泰国”。


        从主题生成博客标题和大纲。
      tags:
        - 用人工智能创建博客
      parameters:
        - name: x-api-key
          in: header
          description: Your API Key
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                Description:
                  type: string
                  description: 为什么要使用人工智能
              x-apifox-orders:
                - Description
              required:
                - Description
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    Outputs:
                      type: array
                      items:
                        type: object
                        properties:
                          Generated:
                            type: string
                        x-apifox-orders:
                          - Generated
                  x-apifox-orders:
                    - Outputs
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 用人工智能创建博客
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4050092/apis/api-149320979-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: http://dev-cn.your-api-server.com
    description: 开发环境
  - url: http://test-cn.your-api-server.com
    description: 测试环境
  - url: https://flows.contentvillain.com/webhook/
    description: 正式环境
security: []

```
