# Abstractive

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/summarize/abstractive:
    post:
      summary: Abstractive
      deprecated: false
      description: >-
        抽象摘要器将使用机器学习生成全新的文本，它是现有文本的摘要。抽象摘要提供了更多选项，包括书写类型、提取与某事物相关的特定信息等等。


        ### 文字成本


        **字数成本：** 1x

        **字数成本说明：**字数统计是通过将输入文本中的字数加上每个摘要句子 15 个字数相加来计算的。因此，1000 个输入单词加上 3
        句话摘要将是 1045 个 API 单词。如果使用 url，我们假设输入文本为 500 个单词。
      tags:
        - 总结
      parameters:
        - name: content-type
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                language:
                  type: string
                summarizedSentences:
                  type: object
                  properties: {}
                  x-apifox-orders: []
              required:
                - language
                - summarizedSentences
              x-apifox-orders:
                - language
                - summarizedSentences
            example:
              language: auto
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  summary:
                    type: string
                  language:
                    type: string
                required:
                  - summary
                  - language
                x-apifox-orders:
                  - summary
                  - language
              example:
                summary: string
                language: string
          headers: {}
          x-apifox-name: 成功
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  error:
                    type: string
                  statusCode:
                    type: integer
                required:
                  - message
                  - error
                  - statusCode
                x-apifox-orders:
                  - message
                  - error
                  - statusCode
          headers: {}
          x-apifox-name: 请求有误
      security: []
      x-apifox-folder: 总结
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4355615/apis/api-166439317-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://api.smodin.io
    description: 正式环境
security: []

```
