├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── audio_transcription.txt ├── chat.py ├── requirements.txt ├── scrape.py └── temp_audio.wav /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterw/JarvisBase/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterw/JarvisBase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterw/JarvisBase/HEAD/README.md -------------------------------------------------------------------------------- /audio_transcription.txt: -------------------------------------------------------------------------------- 1 | Give an overview of Hugging Faces search. -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterw/JarvisBase/HEAD/chat.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterw/JarvisBase/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterw/JarvisBase/HEAD/scrape.py -------------------------------------------------------------------------------- /temp_audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterw/JarvisBase/HEAD/temp_audio.wav --------------------------------------------------------------------------------