3단계로 Agent 배포
제로에서 프로덕션까지 3분
1API 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!"}
]
}'