You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
报错:
volcenginesdkarkruntime._exceptions.ArkBadRequestError: Error code: 400 - {'error': {'code': 'InvalidParameter', 'message': 'One or more parameters specified in the request are not valid. Request id: 0217280951205813c183a1fb82c613f4d4485b7d388d5b4d02e7e', 'param': '', 'type': 'BadRequest'}}, request_id: 20241005102519j4WT1T3n9i1nezw7uvXL
The text was updated successfully, but these errors were encountered:
示例代码:
import os
from volcenginesdkarkruntime import Ark
client = Ark(api_key=os.environ.get("ARK_API_KEY"))
print("----- standard request -----")
completion = client.chat.completions.create(
model="<YOUR_ENDPOINT_ID>",
messages = [
{"role": "system", "content": "你是豆包,是由字节跳动开发的 AI 人工智能助手"},
{"role": "user", "content": "常见的十字花科植物有哪些?"},
],
)
print(completion.choices[0].message.content)
报错:
volcenginesdkarkruntime._exceptions.ArkBadRequestError: Error code: 400 - {'error': {'code': 'InvalidParameter', 'message': 'One or more parameters specified in the request are not valid. Request id: 0217280951205813c183a1fb82c613f4d4485b7d388d5b4d02e7e', 'param': '', 'type': 'BadRequest'}}, request_id: 20241005102519j4WT1T3n9i1nezw7uvXL
The text was updated successfully, but these errors were encountered: