diff --git a/examples/ggwave-to-file/README.md b/examples/ggwave-to-file/README.md index 557cfea..e7c9649 100644 --- a/examples/ggwave-to-file/README.md +++ b/examples/ggwave-to-file/README.md @@ -21,7 +21,6 @@ curl https://ggwave-to-file.ggerganov.com/?m=Hello\ world! --output hello.wav ### python ```python -import sys import requests def ggwave(message: str, protocolId: int = 1): @@ -40,8 +39,13 @@ def ggwave(message: str, protocolId: int = 1): return response +``` + ... +```python +import sys + # query waveform from server result = ggwave("Hello world!")