Skip to content

App that lets you have a verbal conversation with OpenAi's GPT 4

License

Notifications You must be signed in to change notification settings

marianylund/Babagaboosh

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Babagaboosh

Simple app that lets you have a verbal conversation with OpenAi's GPT 4. Originally written by DougDoug, his explanation of the code .

SETUP:

  1. This was written in Python 3.9.2. Install page here: https://www.python.org/downloads/release/python-392/

  2. Run pip install -r requirements.txt to install all modules.

  3. This uses the Microsoft Azure TTS, llamaindex and OpenAi services. You'll need to set up an account with these services and generate an API key from them. Then add these keys to .env file with:

AZURE_TTS_KEY = "some_key"
AZURE_TTS_REGION = "norwayeast"
OPENAI_API_KEY = "some_key"
  1. This app uses the GPT-4 model from OpenAi. As of this writing (Jan 13 2024), you need to pay $1 to OpenAi in order to get access to the GPT-4 model API. So after setting up your account with OpenAi, you will need to pay for at least $1 in credits so that your account is given the permission to use the GPT-4 model when running my app. See here. Microsoft Azure is the service for AI voices.

  2. Add your data to a folder named data and get context from existing data by running get_context.py.

  3. Can estimate cost of running a query to chatgpt by running estimate_cost.py script on the data

Using the App

  1. Run `chatgpt_character.py'

  2. Once it's running, press F4 to start the conversation, and Azure Speech-to-text will listen to your microphone and transcribe it into text.

  3. Once you're done talking, press P. Then the code will send all of the recorded text to the Ai. Note that you should wait a second or two after you're done talking before pressing P so that Azure has enough time to process all of the audio.

  4. Wait a few seconds for OpenAi to generate a response and for Elevenlabs to turn that response into audio. Once it's done playing the response, you can press F4 to start the loop again and continue the conversation.

About

App that lets you have a verbal conversation with OpenAi's GPT 4

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%