수정 - AI 및 fastAPI 초기 구조 셋팅

This commit is contained in:
2026-06-22 18:20:16 +09:00
parent 3a76b24df0
commit 1face1e216
12 changed files with 63 additions and 31 deletions
+6
View File
@@ -0,0 +1,6 @@
from langchain_ollama import ChatOllama
# 로컬 LLM
qwen_llm = ChatOllama(model="qwen3.5:4b", temperature=0)
exaone_llm = ChatOllama(model="exaone3.5:2.4b", temperature=0)
gemma_llm = ChatOllama(model="gemma4:e2b")