llm 분석기능

This commit is contained in:
Macbook
2026-06-17 13:40:52 +09:00
parent 3ed09cd966
commit 7a2509a045
28 changed files with 2783 additions and 3 deletions
+7
View File
@@ -55,6 +55,10 @@ import {
resolveTrendSearchAppSettings,
type TrendSearchAppSettings,
} from '../utils/trendSearchAppSettings';
import {
resolveLlmAppSettings,
type LlmAppSettings,
} from '../utils/llmSettings';
import {
resolveChartPaneSeparatorOptions,
type ChartPaneSeparatorOptions,
@@ -215,6 +219,9 @@ export function resolveAppDefaults(s: AppSettingsDto) {
trendSearchSettings: resolveTrendSearchAppSettings(
s.trendSearchSettings as Partial<TrendSearchAppSettings> | null | undefined,
),
llmSettings: resolveLlmAppSettings(
s.llmSettings as Partial<LlmAppSettings> | null | undefined,
),
};
}