A basic Python app for having voice conversations with Google's Gemini 2.0 AI model. Features real-time voice input and text-to-speech responses.
Note: the full-stack version of this playground is still WIP. Please only use the Standalone script for now.
playground.demo.mp4
- Go to Google AI Studio
- Sign in with your Google account
- Click "Create API Key"
- Copy the generated API key and paste into the .env file (see below under Installation)
-
Clone this repository or download the standalone folder
-
Create a virtual environment and activate it:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install the required packages:
pip install -r requirements.txt
- Create a
.env
file in the standalone directory with your API key:
GEMINI_API_KEY=your_api_key_here
- Make sure your virtual environment is activated
- Run the script:
python standalone.py
The application provides several configuration options through its GUI:
- System Prompt: The initial instructions given to Gemini about its role and behavior
- Voice: Choose from different voice options for Gemini's responses:
- Puck
- Charon
- Kore
- Fenrir
- Aoede
- Enable Google Search: Allows Gemini to search the internet for current information (doesn't work yet)
- Allow Interruptions: Enables interrupting Gemini while it's speaking (see Troubleshooting below if Gemini constantly interrupts itself)
- Configure your desired settings in the GUI
- Click "Start Gemini" to begin
- Speak into your microphone when ready
- The equalizer will show your audio levels in real-time
- Gemini will respond with voice
- Click "Stop Gemini" to end the session
- Audio feedback loop issue - Gemini may interrupt itself when it detects its own voice output through your microphone. This occurs because the application processes all incoming audio, including Gemini's responses. To prevent this feedback loop, either:
- Disable the "Allow Interruptions" option in settings
- Use headphones/earphones to prevent your microphone from picking up Gemini's audio output