├── LICENSE.md ├── README.md ├── components ├── audio_transcriber.py └── chat.py ├── database └── handler.py ├── requirements.txt ├── settings.toml ├── settings └── __init__.py └── speakscribe.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapig/speakscribe/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapig/speakscribe/HEAD/README.md -------------------------------------------------------------------------------- /components/audio_transcriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapig/speakscribe/HEAD/components/audio_transcriber.py -------------------------------------------------------------------------------- /components/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapig/speakscribe/HEAD/components/chat.py -------------------------------------------------------------------------------- /database/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapig/speakscribe/HEAD/database/handler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapig/speakscribe/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapig/speakscribe/HEAD/settings.toml -------------------------------------------------------------------------------- /settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapig/speakscribe/HEAD/settings/__init__.py -------------------------------------------------------------------------------- /speakscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapig/speakscribe/HEAD/speakscribe.py --------------------------------------------------------------------------------