githubCopilot constant

Map<String, dynamic> const githubCopilot

GitHub Copilot configuration

Implementation

static const Map<String, dynamic> githubCopilot = {
  'providerId': 'github-copilot',
  'displayName': 'GitHub Copilot',
  'description': 'GitHub Copilot Chat API',
  'baseUrl': ProviderDefaults.githubCopilotBaseUrl,
  'model': ProviderDefaults.githubCopilotDefaultModel,
  'capabilities': {
    LLMCapability.chat,
    LLMCapability.streaming,
    LLMCapability.toolCalling,
  },
};