mercuryyy

Results 32 comments of mercuryyy

@faisalman Why not marge to master? tested and works well adds good value

Did anyone find another workaround they can share?

Should we use a call to googletag.display(adUnits) before calling refresh?

So would it be class BufferStream: ... buffer = BufferStream() engine = CoquiEngine() stream = TextToAudioStream(engine) steam.feed(buffer.gen(content))

Thanks, It does work, But having an issues with Coqui where openAI api stream will sometimes split words t he house been fore closed last year. "The house been foreclosed...

Yeah that would make more sense, but for some reason my output is splitting word, i am using oobabooga text-generation-webui with its OpenAI like api i get a big scramble....

I think it has something to do with how BufferStream is handling commas and periods.

It does keep the spaces, i was able to get parts outputted clearly using BufferStream problem is how its queue it i think it has a problem with commas and...

``` class BufferStream: def __init__(self): self.items = queue.Queue() self._stop_event = threading.Event() def add(self, item: str) -> None: # Filter out or modify unwanted content if self.should_filter(item): return # Skip adding...