AI Voice Bot python code is working but I am unable to give input through voice what should I do?
import assemblyai as aai from elevenlabs import generate, stream from openai import OpenAI class AI_Assistant: def __init__(self): aai.settings.api_key = “b1777ed8bdf24eea9767045727288eff” self.openai_client = OpenAI(api_key = “sk-proj-WdLyvcLykynTjLPJsvqcT3BlbkFJuTSg6Lfc3sPXPqWQIWlU”) self.elevenlabs_api_key = “d8eaa1fbca3d2e1ee05f3f5c98066f51” self.transcriber = None # Prompt self.full_transcript = [ {“role”:”system”, “content”:”You are a receptionist at a dental clinic. Be resourceful and efficient.”}, ] ###### Step 2: Real-Time Transcription […]