File size: 247 Bytes
8725d40
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# filepath: /home/hwsong/works/llm/custom_rag_project/app.py
"""
์ด๋ ฅ์„œ ๋ถ„์„ ์‹œ์Šคํ…œ ๋ฉ”์ธ ์–ดํ”Œ๋ฆฌ์ผ€์ด์…˜
"""
from ui import create_ui

if __name__ == "__main__":
    app = create_ui()
    app.launch(server_name="0.0.0.0", share=True)