Skip to content

Commit

Permalink
readme fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bejager committed May 3, 2024
1 parent 7e3cfca commit 66305ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ Orca may undergo changes as we continually enhance and refine the engine to prov
- [Web](#web)
- [Android](#android)
- [Releases](#releases)
- [v0.1.0 - January 24th, 2024](#v010---january-24th-2024)
- [FAQ](#faq)

## Language Support
Expand Down Expand Up @@ -210,7 +209,7 @@ Install the Python SDK:
pip3 install pvorca
```

Create and instance of the engine:
Create an instance of the engine:

```python
import pvorca
Expand Down
4 changes: 2 additions & 2 deletions binding/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ stream = orca.open_stream()
for text_chunk in text_generator():
pcm = stream.synthesize(text_chunk)
if pcm is not None:
# handle pcm
# handle pcm

pcm = stream.flush()
if pcm is not None:
# handle pcm
# handle pcm
```

The `text_generator()` function can be any stream generating text, for example an LLM response.
Expand Down

0 comments on commit 66305ed

Please sign in to comment.