1555e87 036c0f6
1
2
3
4
5
6
7
8
9
10
11
""" RAG ๊ฒ์ ์ฑ๋ด ๋ฉ์ธ ์คํ ํ์ผ """ # ์ฑ ๋ชจ๋์์ Flask ์ฑ ๊ฐ์ ธ์ค๊ธฐ from app.app import app if __name__ == '__main__': port = int(os.environ.get("PORT", 7860)) app.run(debug=False, host='0.0.0.0', port=port)