diff --git a/docs/docs/advanced/fine-tuning.md b/docs/docs/advanced/fine-tuning.md index 331b8cab2b..117cfcefd6 100644 --- a/docs/docs/advanced/fine-tuning.md +++ b/docs/docs/advanced/fine-tuning.md @@ -60,11 +60,11 @@ Models are categorized into different classes based on their capabilities: ```typescript enum ModelClass { - SMALL, // Fast, efficient for simple tasks - MEDIUM, // Balanced performance and capability - LARGE, // Most capable but slower/more expensive - EMBEDDING // Specialized for vector embeddings - IMAGE // Image generation capabilities + SMALL, // Fast, efficient for simple tasks + MEDIUM, // Balanced performance and capability + LARGE, // Most capable but slower/more expensive + EMBEDDING, // Specialized for vector embeddings + IMAGE // Image generation capabilities } ```