AITRE API Documents
  1. 自动补全(Completions)
AITRE API Documents
  • 介绍
  • 项目说明
  • 发出请求
  • Openai格式聊天(Chat)
    • gpt-4o-image文生图
      POST
    • gemini-2.5-flash-image-preview(chat聊天文生图)
      POST
    • gemini-2.5-flash-image-preview(chat聊天图生图)
      POST
    • 聊天接口
      POST
  • 文生图(Images)
    • Openai格式的DALL·E 3
      POST
    • Openai格式的Flux
      POST
    • Openai格式的Gpt-image-1
      POST
    • Openai格式的gemini-2.5-flash-image-preview(文生图/图生图)
      POST
  • 音频接口(Audio)
    • TTS语音转文本
      POST
    • 创建转录
      POST
    • 创建翻译
      POST
  • 向量接口(Embeddings)
    • 嵌入对象
    • 创建嵌入
      POST
  • 模型(Models)
    • 列出模型
      GET
  • 自动补全(Completions)
    • 内容补全接口
      POST
  • MidJourney
    • 说明
    • 根据TaskId查询任务
      GET
    • 提交swap_face任务
      POST
    • 执行Action任务
      POST
    • 提交Blend任务(图生图)
      POST
    • 提交Describe任务(图生文)
      POST
    • 提交Imagine任务(文生图、文图生图)
      POST
    • 提交Modal(提交局部重绘、ZOOM)
      POST
    • 提交Shorten任务(prompt分析)
      POST
  • ccTest
    POST
  1. 自动补全(Completions)

内容补全接口

POST
{{BASE_URL}}/v1/completions
给定一个提示,该模型将返回一个或多个预测的完成,并且还可以返回每个位置的替代标记的概率。
为提供的提示和参数创建完成

请求参数

Header 参数

Body 参数application/json

示例
{
    "model": "gpt-3.5-turbo-instruct",
    "prompt": "Say this is a test",
    "max_tokens": 7,
    "temperature": 0
  }

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{BASE_URL}}/v1/completions' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "model": "gpt-3.5-turbo-instruct",
    "prompt": "Say this is a test",
    "max_tokens": 7,
    "temperature": 0
  }'

返回响应

🟢200Ok
application/json
Body

示例
{
  "id": "cmpl-uqkvlQyYK7bGYrRHQ0eXlWi7",
  "object": "text_completion",
  "created": 1589478378,
  "model": "gpt-3.5-turbo-instruct",
  "system_fingerprint": "fp_44709d6fcb",
  "choices": [
    {
      "text": "\n\nThis is indeed a test",
      "index": 0,
      "logprobs": null,
      "finish_reason": "length"
    }
  ],
  "usage": {
    "prompt_tokens": 5,
    "completion_tokens": 7,
    "total_tokens": 12
  }
}
修改于 2024-10-22 09:27:23
上一页
列出模型
下一页
说明
Built with