ai 기반 문지기 npc의 조언 및 전투 스킬 생성 기능 구현

This commit is contained in:
2026-06-24 17:42:16 +09:00
parent 1face1e216
commit 9ca7007c79
13 changed files with 314 additions and 70 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ from pathlib import Path
Path("db").mkdir(parents=True, exist_ok=True)
# echo sql 구문 출력시키는
engine = create_engine('sqlite:///db/ai.db', echo=True)
engine = create_engine('sqlite:///db/roguelike.db', echo=True)
# 세션 팩토리 생성
SessionLocal = sessionmaker(bind=engine, autoflush=False, autocommit=False)