メインコンテンツへスキップ
更新日: 2026-06-06

Create Response

As of March 23, 2026, Crazyrouter production has verified:
  • gpt-5.5 returns object: "response"
  • basic text requests currently return output items of type message
  • streaming requests consistently expose response.created, response.in_progress, response.output_item.added, response.content_part.added, and response.output_text.delta
Claude does not currently support POST /v1/responses. Use POST /v1/messages or POST /v1/chat/completions for Claude instead.

Basic Request

Observed production response shape:

Streaming Request

The production streaming probe on 2026-03-23 observed this opening event sequence:
So the safest current consumer strategy is:
  1. accumulate text from response.output_text.delta
  2. treat response.completed or stream termination as the completion signal

Current Recommendation