yum-slop/TaSTT

Free self-hosted STT for VRChat.

git clone https://git.yummers.dev/yum-slop/TaSTT

yumExperiment with hallucination reductiona7f9b7b

master
295 B12 linesraw
1import sys
2import io
3
4sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
5sys.stderr = io.TextIOWrapper(sys.stderr.buffer, encoding='utf-8')
6
7def log(message):
8    print(message, file=sys.stdout, flush=True)
9
10def log_err(message):
11    print(message, file=sys.stderr, flush=True)
12