Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 918 Bytes

File metadata and controls

31 lines (22 loc) · 918 Bytes

OpenAI Models

Use this page when you want the OpenAI-specific runtime behavior: default provider resolution, hosted tools, Responses, Chat Completions, and conversation-aware sessions.

The Two Main Paths

Path Use it when
Responses you want the conversation-aware modern path
Chat Completions you need compatibility with that API shape

What The OpenAI Layer Adds

  • default provider behavior
  • hosted tool constructors
  • conversation-aware session helpers
  • compaction-aware sessions
  • Responses websocket support
  • request shaping helpers

Practical Guidance

  • prefer Responses for new work
  • use Chat Completions when you have a real compatibility reason
  • keep OpenAI-specific request shaping in config, not in app-level string prompts

Read Next