├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── examples ├── keyboard_chat_with_gpt.py ├── twilio_ngrok_ml_rhyme_hotline.py └── twilio_ngrok_pizza_order.py ├── llm_convo ├── agents.py ├── audio_input.py ├── audio_output.py ├── conversation.py ├── openai_io.py └── twilio_io.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/README.md -------------------------------------------------------------------------------- /examples/keyboard_chat_with_gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/examples/keyboard_chat_with_gpt.py -------------------------------------------------------------------------------- /examples/twilio_ngrok_ml_rhyme_hotline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/examples/twilio_ngrok_ml_rhyme_hotline.py -------------------------------------------------------------------------------- /examples/twilio_ngrok_pizza_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/examples/twilio_ngrok_pizza_order.py -------------------------------------------------------------------------------- /llm_convo/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/llm_convo/agents.py -------------------------------------------------------------------------------- /llm_convo/audio_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/llm_convo/audio_input.py -------------------------------------------------------------------------------- /llm_convo/audio_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/llm_convo/audio_output.py -------------------------------------------------------------------------------- /llm_convo/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/llm_convo/conversation.py -------------------------------------------------------------------------------- /llm_convo/openai_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/llm_convo/openai_io.py -------------------------------------------------------------------------------- /llm_convo/twilio_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/llm_convo/twilio_io.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_convo/HEAD/setup.py --------------------------------------------------------------------------------