了解 CaMeL AI 的通用模型调用方式
CaMeL AI 以 OpenAI 模型调用接口为标准,聚合了多个模型,包括 OpenAI、谷歌 Gemini、Anthropic Claude 等系列模型。调用任何模型都使用相同的方式,只需要修改对应的 模型 ID 即可,大陆用户可以直连使用。
基础集成:使用 OpenAI 官方库
Python 示例
from openai import OpenAI
client = OpenAI(
api_key="sk-***", # 换成你在 CaMeL AI 生成的密钥
base_url="https://api.kr777.top"
)
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?"
}
]
}请求参数
| 名称 | 位置 | 类型 | 必选 | 说明 |
|---|---|---|---|---|
| Authorization | header | string | 否 | Bearer CAMELAI_API_KEY |
| Content-Type | header | string | 否 | none |
| body | body | object | 否 | none |
返回示例:
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
}
}返回结果
| 状态码 | 状态码含义 | 说明 | 数据模型 |
|---|---|---|---|
| 200 | OK | none | Inline |