├── LICENSE ├── README.md ├── app ├── __init__.py ├── main │ ├── __init__.py │ └── routes.py ├── services │ ├── __init__.py │ └── qna_service.py ├── static │ ├── favicon.ico │ └── images │ │ └── pintaru_avatar.jpg └── templates │ ├── chat.html │ └── index.html ├── config.py ├── datasets ├── ipa_kelas6_fullmateri.xlsx ├── ipas_chitchat_edupintar.xlsx └── ips_kelas6_fullmateri.xlsx ├── requirements.txt └── run.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/app/main/__init__.py -------------------------------------------------------------------------------- /app/main/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/app/main/routes.py -------------------------------------------------------------------------------- /app/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/services/qna_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/app/services/qna_service.py -------------------------------------------------------------------------------- /app/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/app/static/favicon.ico -------------------------------------------------------------------------------- /app/static/images/pintaru_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/app/static/images/pintaru_avatar.jpg -------------------------------------------------------------------------------- /app/templates/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/app/templates/chat.html -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/config.py -------------------------------------------------------------------------------- /datasets/ipa_kelas6_fullmateri.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/datasets/ipa_kelas6_fullmateri.xlsx -------------------------------------------------------------------------------- /datasets/ipas_chitchat_edupintar.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/datasets/ipas_chitchat_edupintar.xlsx -------------------------------------------------------------------------------- /datasets/ips_kelas6_fullmateri.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/datasets/ips_kelas6_fullmateri.xlsx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv 2 | requests 3 | Flask 4 | gunicorn -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakDev/EduPintarIPAS/HEAD/run.py --------------------------------------------------------------------------------