Skip to content

whitead/shout

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shout

This is a client for whisper.cpp with ZMQ.

Install

pip install git+https://github.com/whitead/shout.git

Install ZMQ whisper server

git clone https://github.com/whitead/whisper.cpp
cd whisper.cpp
make streammq
streammq --step -1 

Quickstart

Ensure you have a running ZMQ whisper server.

import shout

s = shout.Subscriber()

print(s.get())

Asynchronous

import shout

async def func():
    s = shout.SubscriberAsync()
    print(await s.get())

About

Async whisper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published