I am using pycharm and have pyaudio and pyttsx3 installed. my issue is the audio from my text to speech is not playing. I can see the text being put down in the console so I know that everything else works. Here's the code relating to the tts.
import pyttsx3 as tts
import speech_recognition
import wikipedia
from neuralintents import GenericAssistant
import requests
import pyaudio
recognizer = speech_recognition.Recognizer()
speaker = tts.init()
speaker.setProperty("rate", 150)
speaker.setProperty("volume", 1)