8 lines
157 B
Python
8 lines
157 B
Python
|
|
import asyncio
|
|
from whisper_live.server import TranscriptionServer
|
|
|
|
if __name__ == "__main__":
|
|
server = TranscriptionServer()
|
|
server.run("0.0.0.0")
|