├── .codespellrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── todo-item.md └── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── chatify ├── __init__.py ├── assets │ └── loading.gif ├── cache.py ├── chains.py ├── default_config.yaml ├── llm_models.py ├── main.py ├── prompts │ ├── experimenter.yaml │ ├── inventer.yaml │ ├── tester.yaml │ └── tutor.yaml ├── utils.py └── widgets.py ├── docs ├── .nojekyll ├── Makefile ├── conf.py ├── contributing.rst ├── history.rst ├── html │ ├── .buildinfo │ ├── .doctrees │ │ ├── contributing.doctree │ │ ├── environment.pickle │ │ ├── history.doctree │ │ ├── index.doctree │ │ ├── installation.doctree │ │ ├── modules │ │ │ ├── chatify.cache.doctree │ │ │ ├── chatify.chains.doctree │ │ │ ├── chatify.doctree │ │ │ ├── chatify.llm_models.doctree │ │ │ ├── chatify.main.doctree │ │ │ ├── chatify.utils.doctree │ │ │ ├── chatify.widgets.doctree │ │ │ └── modules.doctree │ │ ├── readme.doctree │ │ └── usage.doctree │ ├── _modules │ │ ├── chatify.html │ │ ├── chatify │ │ │ ├── cache.html │ │ │ ├── chains.html │ │ │ ├── llm_models.html │ │ │ ├── main.html │ │ │ ├── utils.html │ │ │ └── widgets.html │ │ └── index.html │ ├── _sources │ │ ├── contributing.rst.txt │ │ ├── history.rst.txt │ │ ├── index.rst.txt │ │ ├── installation.rst.txt │ │ ├── modules │ │ │ ├── chatify.cache.rst.txt │ │ │ ├── chatify.chains.rst.txt │ │ │ ├── chatify.llm_models.rst.txt │ │ │ ├── chatify.main.rst.txt │ │ │ ├── chatify.rst.txt │ │ │ ├── chatify.utils.rst.txt │ │ │ ├── chatify.widgets.rst.txt │ │ │ └── modules.rst.txt │ │ ├── readme.rst.txt │ │ └── usage.rst.txt │ ├── _static │ │ ├── basic.css │ │ ├── debug.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── scripts │ │ │ ├── furo-extensions.js │ │ │ ├── furo.js │ │ │ ├── furo.js.LICENSE.txt │ │ │ └── furo.js.map │ │ ├── searchtools.js │ │ ├── skeleton.css │ │ ├── sphinx_highlight.js │ │ └── styles │ │ │ ├── furo-extensions.css │ │ │ ├── furo-extensions.css.map │ │ │ ├── furo.css │ │ │ └── furo.css.map │ ├── contributing.html │ ├── genindex.html │ ├── history.html │ ├── index.html │ ├── installation.html │ ├── modules │ │ ├── chatify.cache.html │ │ ├── chatify.chains.html │ │ ├── chatify.html │ │ ├── chatify.llm_models.html │ │ ├── chatify.main.html │ │ ├── chatify.utils.html │ │ ├── chatify.widgets.html │ │ └── modules.html │ ├── objects.inv │ ├── py-modindex.html │ ├── readme.html │ ├── search.html │ ├── searchindex.js │ └── usage.html ├── images │ ├── chatify_cover_image.png │ ├── chatify_demo.gif │ ├── greeting.pdf │ ├── greeting.png │ ├── logo.pdf │ └── logo.png ├── index.html ├── index.rst ├── installation.rst ├── make.bat ├── modules │ ├── chatify.cache.rst │ ├── chatify.chains.rst │ ├── chatify.llm_models.rst │ ├── chatify.main.rst │ ├── chatify.rst │ ├── chatify.utils.rst │ ├── chatify.widgets.rst │ └── modules.rst ├── readme.rst └── usage.rst ├── examples ├── NMA_2023_v0.1.cache ├── W1D1_Tutorial1.ipynb ├── W1D5_Tutorial1.ipynb └── W3D5_Tutorial3.ipynb ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_chatify.py └── tox.ini /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: chatify 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/todo-item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/.github/ISSUE_TEMPLATE/todo-item.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/README.md -------------------------------------------------------------------------------- /chatify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/__init__.py -------------------------------------------------------------------------------- /chatify/assets/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/assets/loading.gif -------------------------------------------------------------------------------- /chatify/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/cache.py -------------------------------------------------------------------------------- /chatify/chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/chains.py -------------------------------------------------------------------------------- /chatify/default_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/default_config.yaml -------------------------------------------------------------------------------- /chatify/llm_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/llm_models.py -------------------------------------------------------------------------------- /chatify/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/main.py -------------------------------------------------------------------------------- /chatify/prompts/experimenter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/prompts/experimenter.yaml -------------------------------------------------------------------------------- /chatify/prompts/inventer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/prompts/inventer.yaml -------------------------------------------------------------------------------- /chatify/prompts/tester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/prompts/tester.yaml -------------------------------------------------------------------------------- /chatify/prompts/tutor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/prompts/tutor.yaml -------------------------------------------------------------------------------- /chatify/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/utils.py -------------------------------------------------------------------------------- /chatify/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/chatify/widgets.py -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/.doctrees/contributing.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/contributing.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/html/.doctrees/history.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/history.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/installation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/installation.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/modules/chatify.cache.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/modules/chatify.cache.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/modules/chatify.chains.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/modules/chatify.chains.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/modules/chatify.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/modules/chatify.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/modules/chatify.llm_models.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/modules/chatify.llm_models.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/modules/chatify.main.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/modules/chatify.main.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/modules/chatify.utils.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/modules/chatify.utils.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/modules/chatify.widgets.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/modules/chatify.widgets.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/modules/modules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/modules/modules.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/readme.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/readme.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/usage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/.doctrees/usage.doctree -------------------------------------------------------------------------------- /docs/html/_modules/chatify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_modules/chatify.html -------------------------------------------------------------------------------- /docs/html/_modules/chatify/cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_modules/chatify/cache.html -------------------------------------------------------------------------------- /docs/html/_modules/chatify/chains.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_modules/chatify/chains.html -------------------------------------------------------------------------------- /docs/html/_modules/chatify/llm_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_modules/chatify/llm_models.html -------------------------------------------------------------------------------- /docs/html/_modules/chatify/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_modules/chatify/main.html -------------------------------------------------------------------------------- /docs/html/_modules/chatify/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_modules/chatify/utils.html -------------------------------------------------------------------------------- /docs/html/_modules/chatify/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_modules/chatify/widgets.html -------------------------------------------------------------------------------- /docs/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_modules/index.html -------------------------------------------------------------------------------- /docs/html/_sources/contributing.rst.txt: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/html/_sources/history.rst.txt: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/installation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/installation.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/modules/chatify.cache.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/modules/chatify.cache.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/modules/chatify.chains.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/modules/chatify.chains.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/modules/chatify.llm_models.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/modules/chatify.llm_models.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/modules/chatify.main.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/modules/chatify.main.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/modules/chatify.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/modules/chatify.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/modules/chatify.utils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/modules/chatify.utils.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/modules/chatify.widgets.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/modules/chatify.widgets.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/modules/modules.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/modules/modules.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/readme.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/readme.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/usage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_sources/usage.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/debug.css -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/html/_static/scripts/furo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/scripts/furo.js -------------------------------------------------------------------------------- /docs/html/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/scripts/furo.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/html/_static/scripts/furo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/scripts/furo.js.map -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/skeleton.css -------------------------------------------------------------------------------- /docs/html/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/html/_static/styles/furo-extensions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/styles/furo-extensions.css -------------------------------------------------------------------------------- /docs/html/_static/styles/furo-extensions.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/styles/furo-extensions.css.map -------------------------------------------------------------------------------- /docs/html/_static/styles/furo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/styles/furo.css -------------------------------------------------------------------------------- /docs/html/_static/styles/furo.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/_static/styles/furo.css.map -------------------------------------------------------------------------------- /docs/html/contributing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/contributing.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/history.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/installation.html -------------------------------------------------------------------------------- /docs/html/modules/chatify.cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/modules/chatify.cache.html -------------------------------------------------------------------------------- /docs/html/modules/chatify.chains.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/modules/chatify.chains.html -------------------------------------------------------------------------------- /docs/html/modules/chatify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/modules/chatify.html -------------------------------------------------------------------------------- /docs/html/modules/chatify.llm_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/modules/chatify.llm_models.html -------------------------------------------------------------------------------- /docs/html/modules/chatify.main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/modules/chatify.main.html -------------------------------------------------------------------------------- /docs/html/modules/chatify.utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/modules/chatify.utils.html -------------------------------------------------------------------------------- /docs/html/modules/chatify.widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/modules/chatify.widgets.html -------------------------------------------------------------------------------- /docs/html/modules/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/modules/modules.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/html/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/readme.html -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/html/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/html/usage.html -------------------------------------------------------------------------------- /docs/images/chatify_cover_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/images/chatify_cover_image.png -------------------------------------------------------------------------------- /docs/images/chatify_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/images/chatify_demo.gif -------------------------------------------------------------------------------- /docs/images/greeting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/images/greeting.pdf -------------------------------------------------------------------------------- /docs/images/greeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/images/greeting.png -------------------------------------------------------------------------------- /docs/images/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/images/logo.pdf -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules/chatify.cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/modules/chatify.cache.rst -------------------------------------------------------------------------------- /docs/modules/chatify.chains.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/modules/chatify.chains.rst -------------------------------------------------------------------------------- /docs/modules/chatify.llm_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/modules/chatify.llm_models.rst -------------------------------------------------------------------------------- /docs/modules/chatify.main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/modules/chatify.main.rst -------------------------------------------------------------------------------- /docs/modules/chatify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/modules/chatify.rst -------------------------------------------------------------------------------- /docs/modules/chatify.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/modules/chatify.utils.rst -------------------------------------------------------------------------------- /docs/modules/chatify.widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/modules/chatify.widgets.rst -------------------------------------------------------------------------------- /docs/modules/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/modules/modules.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/readme.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /examples/NMA_2023_v0.1.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/examples/NMA_2023_v0.1.cache -------------------------------------------------------------------------------- /examples/W1D1_Tutorial1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/examples/W1D1_Tutorial1.ipynb -------------------------------------------------------------------------------- /examples/W1D5_Tutorial1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/examples/W1D5_Tutorial1.ipynb -------------------------------------------------------------------------------- /examples/W3D5_Tutorial3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/examples/W3D5_Tutorial3.ipynb -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit test package for chatify.""" 2 | -------------------------------------------------------------------------------- /tests/test_chatify.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContextLab/chatify/HEAD/tox.ini --------------------------------------------------------------------------------