togetherAI constant

Map<String, dynamic> const togetherAI

Together AI configuration

Implementation

static const Map<String, dynamic> togetherAI = {
  'providerId': 'together-ai',
  'displayName': 'Together AI',
  'description': 'Together AI platform for open source models',
  'baseUrl': ProviderDefaults.togetherAIBaseUrl,
  'model': ProviderDefaults.togetherAIDefaultModel,
  'capabilities': {
    LLMCapability.chat,
    LLMCapability.streaming,
    LLMCapability.toolCalling,
  },
};