This commit is contained in:
g
2026-01-10 02:18:56 +00:00
parent 6c90ba90c3
commit 437aec110c
2 changed files with 22 additions and 1 deletions

View File

@@ -311,12 +311,18 @@ export interface SalesPrediction {
confidence: "very_high" | "high" | "medium" | "low";
method: string;
methods?: {
aiNeuralNetwork?: number | null;
weightedMovingAverage?: number | null;
exponentialSmoothing?: number | null;
holtWinters?: number | null;
weightedLinearRegression?: number | null;
trendAdjusted?: number | null;
};
aiModel?: {
used: boolean;
confidence?: string;
modelAccuracy?: number;
};
trend?: {
direction: "up" | "down" | "neutral";
strength: number;