GodSaveMoney / app /main.py
Jeong-hun Kim
fixed typos
f8c71d2
raw
history blame
492 Bytes
from core.make_pipeline import MakePipeline
from core.context_manager import ContextManager
from core.launch_gradio import create_interface
########################
# Start with localhost #
########################
if __name__ == "__main__":
# 모델 불러오기
makePipeline = MakePipeline()
makePipeline.build("lh")
# 채팅 기록 관리자
ctx = ContextManager()
# Gradio 인터페이스 시작
demo = create_interface(ctx, makePipeline)
demo.launch()