开始使用快速开始
申请API密钥
你可以在开放平台账号管理子菜单接口密钥中获取API密钥
环境准备
Python依赖安装
对 python 用户,可以复用 openai 的 sdk
pip install --upgrade 'openai>=1.0'cURL环境安装
在不同的操作系统上安装curl命令,会使用不同的包管理器。以下是在Debian、CentOS和macOS上安装curl的命令:
-
Debian/Ubuntu (使用
apt包管理器):sudo apt-get update sudo apt-get install curl -
CentOS (使用
yum或dnf包管理器, CentOS 8 或更高版本使用dnf):- 使用yum:
sudo yum install curl- 使用dnf(CentOS 8):
sudo dnf install curl -
macOS (使用
brew包管理器, 如果尚未安装Homebrew,可以参考Homebrew官网 进行安装):brew install curl
发送请求
在安装好环境依赖并申请了API密钥之后,可以使用python库或者curl发送请求。下列是简单的python以及curl示例:
from openai import OpenAI
client = OpenAI(api_key="STEP_API_KEY", base_url="https://api.stepfun.com/v1")
completion = client.chat.completions.create(
model="step-1-8k",
messages=[
{
"role": "system",
"content": "你是由阶跃星辰提供的AI聊天助手,你擅长中文,英文,以及多种其他语言的对话。在保证用户数据安全的前提下,你能对用户的问题和请求,作出快速和精准的回答。同时,你的回答和建议应该拒绝黄赌毒,暴力恐怖主义的内容",
},
{"role": "user", "content": "你好,请介绍一下阶跃星辰的人工智能!"},
],
)
print(completion)curl https://api.stepfun.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $STEP_API_KEY" \
-d '{
"model": "step-1-8k",
"messages": [
{
"role": "system",
"content": "你是由阶跃星辰提供的AI聊天助手,你擅长中文,英文,以及多种其他语言的对话。在保证用户数据安全的前提下,你能对用户的问题和请求,作出快速和精准的回答。同时,你的回答和建议应该拒绝黄赌毒,暴力恐怖主义的内容。"
},
{
"role": "user",
"content": "你好,请介绍一下阶跃星辰的人工智能!"
}
]
}'响应请求
stream和非stream返回类似如下:
返回
{
"id": "780ed6b9fefd60c3b2589eb784bd478c@018f5c55f3fe7b618d43c1780b6b3205",
"object": "chat.completion",
"created": 1715241088,
"model": "step-1-8k",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "阶跃星辰的人工智能是一种基于先进算法和大数据技术的智能系统。它旨在为用户提供智能化的解决方案和服务,包括自然语言处理、智能推荐、图像识别、语音识别等功能。\n\n作为AI聊天助手,我可以与用户进行多种语言的对话,并根据用户的问题和请求提供快速、精准的回答。我还可以根据用户的偏好和历史记录,提供个性化的建议和推荐。\n\n阶跃星辰的人工智能注重用户数据的安全和隐私保护,严格遵守相关法律法规,确保用户的数据不会被滥用或泄露。同时,我也会拒绝黄赌毒、暴力恐怖主义等不良内容,为用户提供健康、积极的交流环境。"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 85,
"completion_tokens": 143,
"total_tokens": 228
}
}返回
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":0,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":""}],"usage":{"prompt_tokens":0,"completion_tokens":0,"total_tokens":0}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"阶"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":1,"total_tokens":86}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"跃"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":2,"total_tokens":87}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"星辰"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":3,"total_tokens":88}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"的"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":4,"total_tokens":89}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"人工智能"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":5,"total_tokens":90}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"是一种"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":6,"total_tokens":91}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"基于"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":7,"total_tokens":92}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"先进"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":8,"total_tokens":93}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"算法"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":9,"total_tokens":94}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"和"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":10,"total_tokens":95}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"海"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":11,"total_tokens":96}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"量"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":12,"total_tokens":97}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"数据"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":13,"total_tokens":98}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"的"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":14,"total_tokens":99}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"智能"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":15,"total_tokens":100}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"系统"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":16,"total_tokens":101}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":","},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":17,"total_tokens":102}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"旨在"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":18,"total_tokens":103}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"为"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":19,"total_tokens":104}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"用户提供"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":20,"total_tokens":105}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"智能化"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":21,"total_tokens":106}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"的"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":22,"total_tokens":107}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"聊天"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":23,"total_tokens":108}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"服务"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":24,"total_tokens":109}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"。"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":25,"total_tokens":110}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"它"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":26,"total_tokens":111}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"能够"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":27,"total_tokens":112}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"理解"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":28,"total_tokens":113}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"和"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":29,"total_tokens":114}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"生成"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":30,"total_tokens":115}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"多种"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":31,"total_tokens":116}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"语言"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":32,"total_tokens":117}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":","},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":33,"total_tokens":118}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"包括"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":34,"total_tokens":119}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"中文"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":35,"total_tokens":120}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"、"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":36,"total_tokens":121}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"英文"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":37,"total_tokens":122}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"以及其他"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":38,"total_tokens":123}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"一些"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":39,"total_tokens":124}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"语言"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":40,"total_tokens":125}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"。"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":41,"total_tokens":126}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"通过"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":42,"total_tokens":127}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"与"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":43,"total_tokens":128}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"用户"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":44,"total_tokens":129}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"的"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":45,"total_tokens":130}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"交互"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":46,"total_tokens":131}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":","},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":47,"total_tokens":132}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"它可以"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":48,"total_tokens":133}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"回答"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":49,"total_tokens":134}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"各种"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":50,"total_tokens":135}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"问题"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":51,"total_tokens":136}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"、"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":52,"total_tokens":137}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"提供"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":53,"total_tokens":138}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"信息"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":54,"total_tokens":139}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"和"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":55,"total_tokens":140}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"建议"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":56,"total_tokens":141}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":","},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":57,"total_tokens":142}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"帮助"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":58,"total_tokens":143}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"用户"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":59,"total_tokens":144}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"解决问题"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":60,"total_tokens":145}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"和"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":61,"total_tokens":146}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"获取"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":62,"total_tokens":147}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"知识"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":63,"total_tokens":148}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"。"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":64,"total_tokens":149}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"同时"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":65,"total_tokens":150}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":","},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":66,"total_tokens":151}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"它"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":67,"total_tokens":152}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"也"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":68,"total_tokens":153}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"注重"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":69,"total_tokens":154}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"保护"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":70,"total_tokens":155}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"用户"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":71,"total_tokens":156}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"的数据"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":72,"total_tokens":157}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"安全"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":73,"total_tokens":158}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":","},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":74,"total_tokens":159}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"并"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":75,"total_tokens":160}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"拒绝"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":76,"total_tokens":161}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"黄"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":77,"total_tokens":162}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"赌"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":78,"total_tokens":163}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"毒"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":79,"total_tokens":164}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"、"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":80,"total_tokens":165}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"暴力"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":81,"total_tokens":166}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"恐怖主义"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":82,"total_tokens":167}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"等"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":83,"total_tokens":168}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"不良"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":84,"total_tokens":169}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"内容"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":85,"total_tokens":170}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":"。"},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":86,"total_tokens":171}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":""},"finish_reason":""}],"usage":{"prompt_tokens":85,"completion_tokens":87,"total_tokens":172}}
data: {"id":"4c941c77389ab77f95371138dcb93734@018f5c5e16767a07add62e791d53119b","object":"chat.completion.chunk","created":1715241621,"model":"step-1-8k","choices":[{"index":0,"delta":{"role":"","content":""},"finish_reason":"stop"}],"usage":{"prompt_tokens":85,"completion_tokens":87,"total_tokens":172}}
data: [DONE]
部分异常响应如下(详细错误信息可以参考错误码文档):
- 请求超时机制:我们为每个请求设定了一个时间限制,即10分钟。如果在这个时间限制内请求没有完成,系统将不会继续等待,而是立即终止该请求,并返回一个状态码为503的错误响应。
- 速率限制:系统还设置了速率限制来控制请求的频率。如果用户的请求频率超过了这个限制,系统将不会处理超出限制的请求,而是直接返回一个状态码为429的错误响应。这个错误表示“太多请求”,意味着用户在给定的时间窗口内发送了太多的请求。
Last updated on