Deep Dive: Models

Understanding model selection and capabilities.

Status: Placeholder - to be expanded with detailed content.

Topics to Cover

  • Available models (GPT-5, GPT-4.1, Claude Sonnet, etc.)
  • Model capabilities and limitations
  • BYOK (Bring Your Own Key) setup
  • Choosing models for different tasks
  • Cost and latency considerations

Quick Reference

Available models

The Copilot SDK accesses models through the Copilot CLI. Available models depend on your subscription:

ModelUse Case
gpt-5Complex reasoning, coding
gpt-4.1General purpose, balanced
claude-sonnet-4.5Long context, analysis

BYOK Configuration

For using your own API keys:

// Check SDK/CLI docs for exact configuration
const client = await CopilotClient.create({
  agent: { name: "my-agent", version: "1.0.0" },
  // BYOK options vary - check current documentation
});

See Also