├── .coveragerc ├── .env.template ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── docs ├── Makefile ├── _static │ └── .gitignore ├── authors.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── index.rst ├── license.rst ├── readme.rst └── requirements.txt ├── init_signal-cli.sh ├── init_whisper.cpp.sh ├── initvenv.sh ├── install.sh ├── main.py ├── pyproject.toml ├── readme.md ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── talkybotty │ ├── __init__.py │ ├── classes │ └── telegram.py │ └── main.py ├── tests ├── conftest.py └── test_skeleton.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/.coveragerc -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | # Empty directory 2 | -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. _authors: 2 | .. include:: ../AUTHORS.rst 3 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. _changes: 2 | .. include:: ../CHANGELOG.rst 3 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. _readme: 2 | .. include:: ../README.rst 3 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /init_signal-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/init_signal-cli.sh -------------------------------------------------------------------------------- /init_whisper.cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/init_whisper.cpp.sh -------------------------------------------------------------------------------- /initvenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/initvenv.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/install.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/setup.py -------------------------------------------------------------------------------- /src/talkybotty/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/src/talkybotty/__init__.py -------------------------------------------------------------------------------- /src/talkybotty/classes/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/src/talkybotty/classes/telegram.py -------------------------------------------------------------------------------- /src/talkybotty/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/src/talkybotty/main.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/tests/test_skeleton.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaLuke13/TalkyBotty/HEAD/tox.ini --------------------------------------------------------------------------------