Skip to content

Commit

Permalink
docs: Fixed a small syntax issue in the ModelClass Update fine-tuning.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mdqst authored Dec 27, 2024
1 parent b78fbfe commit ed1e9f3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/docs/advanced/fine-tuning.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
```

Expand Down

0 comments on commit ed1e9f3

Please sign in to comment.