From f67bf8baef9759b563404187fc83c9b6948d7b9d Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Sat, 2 May 2026 08:39:52 +0200 Subject: [PATCH] feat: update AI categorization model to 'mistral-tiny' for improved performance --- backend/src/ai/ai.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/ai/ai.service.ts b/backend/src/ai/ai.service.ts index 8ed98ed8..470e21ea 100644 --- a/backend/src/ai/ai.service.ts +++ b/backend/src/ai/ai.service.ts @@ -2,7 +2,7 @@ import { Injectable, Logger, ServiceUnavailableException } from '@nestjs/common' import { FlatCategory } from '../categories/categories.service'; const MISTRAL_API_URL = 'https://api.mistral.ai/v1/chat/completions'; -export const AI_CATEGORIZATION_MODEL = 'mistral-small-2603'; +export const AI_CATEGORIZATION_MODEL = 'mistral-tiny'; const MODEL = AI_CATEGORIZATION_MODEL; export type CategorySuggestion = {