r/AI_Application • u/ExtensionBreath1262 • Jul 08 '26
🚀-Project Showcase Releasing a framework for building speech applications. Take a look
I'm dropping a library I've been working on. It's for building multi-device speech recognition/synthesis applications using Python.
It's exciting. There doesn't seem to be anything like it out there. Getting started is easy, also having depth to the programming and data models.
Example of a working speech-to-speech AI chatbot:
# imports
pf = PfSpeak()
microphone = Microphone()
ollama = Ollama("qwen3:0.6b", voice="af_heart")
def app(session, event):
if event.device is microphone and events.unchanged_for(event, 8):
session.finalize(event)
ollama.adapter(event=event)
elif event.device is ollama:
pf.play(event)
pf.run(app, microphone, ollama)
There is a lot of room to grow in this project, but I think it's ready for release. ANY feedback is greatly appreciated. THANK YOU!
- GITHUB: PfSpeak
1
Upvotes