Felo API PlatformFelo API Platform
모델 목록으로 돌아가기
모델messages

Claude Opus 5.5

고난도 추론과 장기 에이전트 작업을 위한 Anthropic 플래그십 모델.

대규모 코드베이스의 다단계 변경, 장기 에이전트 작업, 고난도 추론에 적합한 Anthropic의 플래그십 라우트입니다. 1M 토큰 컨텍스트와 캐시 입출력 할인을 지원합니다.

추론도구JSON스트리밍비전

모델 ID

claude-opus-5-5

컨텍스트

1M

최대 출력

128K

지연 시간

심층

프로토콜

messages

Quick Start

Felo API Platform 호환 API로 이 모델을 호출하는 코드입니다. 코드를 작성하기 전에 Playground에서 prompt를 테스트할 수 있습니다.

1

API key 설정

Felo API Platform 계정에서 key를 만들고 환경 변수로 설정하세요.

export FELO_API_KEY="YOUR_API_KEY"
2

첫 요청 보내기

이 모델 ID를 Felo API Platform endpoint와 함께 사용하세요. claude-opus-5-5 같은 선택 요청 헤더는 문제 해결에 도움이 됩니다. X-Request-Id

이 모델은 reasoning을 지원합니다. 선택한 protocol과 모델 라우트가 reasoning controls를 제공하는 경우 대화를 이어갈 때 반환된 reasoning metadata를 보존하세요.

복사
const response = await fetch("https://openapi.felo.ai/api/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${process.env.FELO_API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    model: "claude-opus-5-5",
    messages: [
      { role: "user", content: "How many r's are in the word strawberry?" }
    ],
  }),
});

const data = await response.json();
console.log(data.choices[0].message.content);

타사 SDK 사용

호환 SDK에서는 baseURL을 다음으로 설정합니다 baseURL https://openapi.felo.ai/api/v1. Claude-style clients에는 Anthropic-compatible base URL을 사용하세요. https://openapi.felo.ai/api.

3

Streaming 활성화

stream: true를 추가하면 server-sent events로 응답을 받을 수 있습니다.

복사
curl -N https://openapi.felo.ai/api/v1/chat/completions   -H "Authorization: Bearer $FELO_API_KEY"   -H "Content-Type: application/json"   -d '{
    "model": "claude-opus-5-5",
    "stream": true,
    "messages": [
      {"role": "user", "content": "Hello"}
    ]
  }'

Endpoint

Felo API Platform은 호환 가능한 모델 호출 surface를 제공합니다. 앱이나 Agent client가 이미 지원하는 surface를 선택하세요.

SurfaceMethodURL

Chat Completions

Chat completion requests for compatible apps and agents.

POST

https://openapi.felo.ai/api/v1/chat/completions

Responses

Responses-compatible agent and workflow requests.

POST

https://openapi.felo.ai/api/v1/responses

Messages

Anthropic-compatible messages for Claude-style clients.

POST

https://openapi.felo.ai/api/v1/messages

Parameters

이름타입기본값설명
modelstringclaude-opus-5-5호출할 공개 모델 ID.
messagesarrayrequiredChat Completions의 대화 메시지.
streambooleanfalsetrue이면 server-sent events로 반환합니다.
temperaturenumber1지원되는 경우 응답 다양성을 제어합니다.
max_tokensintegermodel default생성할 최대 tokens.
toolsarrayoptional호환 schema를 따르는 tool calling definitions.
tool_choicestring or objectoptionaltool 호출 여부를 제어합니다.
response_formatobjectoptional지원 시 structured output을 요청합니다.