This commit is contained in:
lunaticbum 2026-03-26 11:22:07 +09:00
parent dc18d5baaf
commit b289b4d9a0
2 changed files with 101 additions and 90 deletions

View File

@ -0,0 +1,13 @@
분석용 llm
https://huggingface.co/MLP-KTLim/llama-3-Korean-Bllossom-8B-gguf-Q4_K_M
llama-3-Korean-Bllossom-8B-Q4_K_M.gguf
뉴스용 임베디드 llm
https://huggingface.co/Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled
bge-m3-q4_k_m.gguf

View File

@ -121,8 +121,6 @@ fun main() = application {
Window(onCloseRequest = { isWindowOpen = false }, title = "KIS AI 자동매매", state = windowState) { Window(onCloseRequest = { isWindowOpen = false }, title = "KIS AI 자동매매", state = windowState) {
var currentScreen by remember { mutableStateOf(AppScreen.Settings) } var currentScreen by remember { mutableStateOf(AppScreen.Settings) }
var isLoaded by remember { mutableStateOf(false) } var isLoaded by remember { mutableStateOf(false) }
val scope = rememberCoroutineScope()
// 1. 앱 시작 시 DB에서 마지막 설정 로드 (KisSession에 주입) // 1. 앱 시작 시 DB에서 마지막 설정 로드 (KisSession에 주입)
LaunchedEffect(Unit) { LaunchedEffect(Unit) {
DatabaseFactory.init() DatabaseFactory.init()