Felo API PlatformFelo API Platform
모델 목록으로 돌아가기
모델무료 체험responses

GPT-5.6 Luna

일상적인 Agent 작업을 위한 빠르고 경제적인 GPT-5.6. Felo API Platform에서 무료 API 체험으로 시작할 수 있습니다.

빠른 개발 반복, 채팅, 정보 추출, 검색 결과 정리와 대량 Agent 작업에 적합한 효율형 모델입니다.

추론도구JSON스트리밍비전

모델 ID

gpt-5.6-luna

컨텍스트

400K

최대 출력

128K

지연 시간

빠름

프로토콜

responses

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와 함께 사용하세요. gpt-5.6-luna 같은 선택 요청 헤더는 문제 해결에 도움이 됩니다. 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: "gpt-5.6-luna",
    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": "gpt-5.6-luna",
    "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

이름타입기본값설명
modelstringgpt-5.6-luna호출할 공개 모델 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을 요청합니다.