├── .gitignore ├── README.md ├── alp.py ├── lib ├── ai_tools.py ├── chatbot.py ├── cont_proc.py ├── db_handler.py └── params.py ├── requirements.txt ├── static ├── alp-hub.png ├── alp-session-mgr.png ├── chat1.png ├── chat2.png ├── chat3.png ├── data │ ├── dbs │ │ └── info.txt │ └── simulacra.json ├── scripts │ ├── chat.js │ └── home.js └── styles │ └── style.css └── templates ├── collection_manager.html ├── home.html ├── index.html ├── session_manager.html └── summary.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/README.md -------------------------------------------------------------------------------- /alp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/alp.py -------------------------------------------------------------------------------- /lib/ai_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/lib/ai_tools.py -------------------------------------------------------------------------------- /lib/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/lib/chatbot.py -------------------------------------------------------------------------------- /lib/cont_proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/lib/cont_proc.py -------------------------------------------------------------------------------- /lib/db_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/lib/db_handler.py -------------------------------------------------------------------------------- /lib/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/lib/params.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/alp-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/static/alp-hub.png -------------------------------------------------------------------------------- /static/alp-session-mgr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/static/alp-session-mgr.png -------------------------------------------------------------------------------- /static/chat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/static/chat1.png -------------------------------------------------------------------------------- /static/chat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/static/chat2.png -------------------------------------------------------------------------------- /static/chat3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/static/chat3.png -------------------------------------------------------------------------------- /static/data/dbs/info.txt: -------------------------------------------------------------------------------- 1 | dir to store .db file -------------------------------------------------------------------------------- /static/data/simulacra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/static/data/simulacra.json -------------------------------------------------------------------------------- /static/scripts/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/static/scripts/chat.js -------------------------------------------------------------------------------- /static/scripts/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/static/scripts/home.js -------------------------------------------------------------------------------- /static/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/static/styles/style.css -------------------------------------------------------------------------------- /templates/collection_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/templates/collection_manager.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/session_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/templates/session_manager.html -------------------------------------------------------------------------------- /templates/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpast/ALP/HEAD/templates/summary.html --------------------------------------------------------------------------------