├── .gitignore ├── AudioRecorder.py ├── AudioTranscriber.py ├── LICENSE ├── README.md ├── app_icon.png ├── chat_utils.py ├── custom_speech_recognition ├── __init__.py ├── __main__.py ├── audio.py ├── exceptions.py ├── flac-linux-x86 ├── flac-linux-x86_64 ├── flac-mac ├── flac-win32.exe ├── pocketsphinx-data │ └── en-US │ │ ├── LICENSE.txt │ │ ├── acoustic-model │ │ ├── README │ │ ├── feat.params │ │ ├── mdef │ │ ├── means │ │ ├── noisedict │ │ ├── sendump │ │ ├── transition_matrices │ │ └── variances │ │ ├── language-model.lm.bin │ │ └── pronounciation-dictionary.dict └── recognizers │ ├── __init__.py │ └── whisper.py ├── data └── salestesting.txt ├── deep_lake_utils.py ├── keys.env ├── main.py ├── prompts.py ├── requirements.txt ├── styles ├── chatapp.qss └── setup.qss └── transcripts └── test_transcript.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | keys.env 3 | .venv/ -------------------------------------------------------------------------------- /AudioRecorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/AudioRecorder.py -------------------------------------------------------------------------------- /AudioTranscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/AudioTranscriber.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/README.md -------------------------------------------------------------------------------- /app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/app_icon.png -------------------------------------------------------------------------------- /chat_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/chat_utils.py -------------------------------------------------------------------------------- /custom_speech_recognition/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/__init__.py -------------------------------------------------------------------------------- /custom_speech_recognition/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/__main__.py -------------------------------------------------------------------------------- /custom_speech_recognition/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/audio.py -------------------------------------------------------------------------------- /custom_speech_recognition/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/exceptions.py -------------------------------------------------------------------------------- /custom_speech_recognition/flac-linux-x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/flac-linux-x86 -------------------------------------------------------------------------------- /custom_speech_recognition/flac-linux-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/flac-linux-x86_64 -------------------------------------------------------------------------------- /custom_speech_recognition/flac-mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/flac-mac -------------------------------------------------------------------------------- /custom_speech_recognition/flac-win32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/flac-win32.exe -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/LICENSE.txt -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/README -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/feat.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/feat.params -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/mdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/mdef -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/means: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/means -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/noisedict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/noisedict -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/sendump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/sendump -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/transition_matrices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/transition_matrices -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/variances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/acoustic-model/variances -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/language-model.lm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/language-model.lm.bin -------------------------------------------------------------------------------- /custom_speech_recognition/pocketsphinx-data/en-US/pronounciation-dictionary.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/pocketsphinx-data/en-US/pronounciation-dictionary.dict -------------------------------------------------------------------------------- /custom_speech_recognition/recognizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_speech_recognition/recognizers/whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/custom_speech_recognition/recognizers/whisper.py -------------------------------------------------------------------------------- /data/salestesting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/data/salestesting.txt -------------------------------------------------------------------------------- /deep_lake_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/deep_lake_utils.py -------------------------------------------------------------------------------- /keys.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY = 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/main.py -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/requirements.txt -------------------------------------------------------------------------------- /styles/chatapp.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/styles/chatapp.qss -------------------------------------------------------------------------------- /styles/setup.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/styles/setup.qss -------------------------------------------------------------------------------- /transcripts/test_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-johnstonn/SalesCopilot/HEAD/transcripts/test_transcript.txt --------------------------------------------------------------------------------