supportsEmbeddings property
bool
get
supportsEmbeddings
Check if this model supports embeddings
Implementation
bool get supportsEmbeddings {
// xAI provides embedding models
return model.contains('embed') || model == 'text-embedding-ada-002';
}