3 步接入你的 Agent
从 0 到接入生产环境,3 分钟搞定
1获取 API Key
注册并一键生成你的 API Key。
2接入代码
复制示例代码,3 分钟完成接入。
3开始构建
接入完成,开始构建你的 Agent。
curl -X POST https://api.ofox.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OFOXAI_API_KEY" \
-d '{
"model": "openai/gpt-4o",
"messages": [
{"role": "user", "content": "Hello World!"}
]
}'
