# NLP 改写器

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /webhook/nlp-rephraser:
    post:
      summary: NLP 改写器
      deprecated: false
      description: |
        该改写器能够改写最多大约 700 个单词的文本。要改写的文本长度可能会有所不同，因此如果确实出现错误，请尝试缩短它。

        根据文本长度和您希望返回的变体数量，API 端点将花费更长的时间。有两个变量要添加到此端点中，如下所示。

        接口将返回您改写的内容。请注意,序列应设置为最小值1,最大值5。将其设置得高于此值可能会导致超时。
      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:
                message:
                  type: string
                  description: 那只猫坐在席子上和他的伙伴们一起喝酒了一整夜。
                sequences:
                  type: number
              x-apifox-orders:
                - message
                - sequences
              required:
                - message
                - sequences
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    Outputs:
                      type: array
                      items:
                        type: object
                        properties:
                          Generated:
                            type: string
                        required:
                          - Generated
                        x-apifox-orders:
                          - Generated
                  x-apifox-orders:
                    - Outputs
              example:
                - Outputs:
                    - Generated: >-
                        The cat sat all night drinking with his friends on the
                        mat.
                    - Generated: >-
                        The cat sat all night in the mat with his friends,
                        drinking.
          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-149316213-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: []

```
