Skip to main content

NUWA 一站式集成

了解 NUWA 的通用模型调用方式

NUWA 以 OpenAI 模型调用接口为标准,聚合了多个模型,包括 OpenAI、谷歌 Gemini、Anthropic Claude 等系列模型,调用所有模型均使用相同的方式,只需要更换对应的 模型 ID 即可,支持用户可以自由切换。

核心要点:

只需在 client 初始化入参时的 base_url 为 NUWA 平台的链接,在此 ID 可以随意填写的前提下,调用对应 模型ID,完成。

基础集成:使用 OpenAI 官方库

Python 示例

from openai import OpenAI

client = OpenAI(
api_key="sk-***", # 换成你在 NUWA 生成的密钥
base_url="https://api.nuwaapi.com/v1"
)

chat_completion = client.chat.completions.create(
messages=[
{
"role": "user",
"content": "Say this is a test",
}
],
model="gpt-4o-mini", # 替换为任意支持的模型 ID
)

print(chat_completion)

ⓘ OpenAI 官方库文档参考查看

通用模型转发 API

端点 (Endpoint): POST /v1/chat/completions

Body 请求参数:

{
"model": "gpt-4o-mini",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
}

请求参数

名称位置类型必填说明
AuthorizationheaderstringBearer NUWA_KEY...
Content-Typeheaderstringnone
bodybodyobjectnone

返回示例:

200 Response
{
"id": "chatcmpl-AzJqsyf2h02BKjrqHMA1HVUQpiDfL",
"model": "gpt-4o-mini",
"object": "chat.completion",
"created": 1739177682,
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "The meaning of life is a philosophical question that has been debated for centuries. Different people and cultures may have different beliefs about the purpose and significance of life. Some believe that the meaning of life is to seek happiness and fulfillment, while others believe in spiritual or religious meanings such as serving a higher power or fulfilling a destiny. Ultimately, the meaning of life may be a deeply personal and individual question that each person must answer for themselves."
},
"finish_reason": "stop"
}
],
"system_fingerprint": "fp_0165350fbb",
"usage": {
"prompt_tokens": 14,
"completion_tokens": 86,
"total_tokens": 100
}
}

返回结果

状态码状态码含义说明数据模型
200OKnoneInline