Group model stack and dedupe DEB families

This commit is contained in:
2569718930@qq.com
2026-04-17 00:35:48 +08:00
parent 7909a16002
commit 9ec86e0504
5 changed files with 461 additions and 38 deletions
+19
View File
@@ -238,6 +238,25 @@ export interface SourceForecasts {
weather_gov?: {
forecast_periods?: WeatherGovPeriod[];
};
open_meteo_multi_model?: {
source?: string | null;
provider?: string | null;
dates?: string[];
model_metadata?: Record<
string,
{
label?: string | null;
provider?: string | null;
model?: string | null;
tier?: string | null;
resolution_km?: number | null;
horizon?: string | null;
open_meteo_model?: string | null;
}
>;
model_keys?: Record<string, string>;
attribution?: string | null;
};
}
export interface DailyModelForecast {