수정 - 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
@@ -0,0 +1,8 @@
from backend.ai.llm import watson_llm
# LLM 모델 통신
# 데이터베이스 통신
def question_and_answer(question):
response = watson_llm.invoke(question)
return response.content