-
Notifications
You must be signed in to change notification settings - Fork 292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: asynciterable support #477
base: main
Are you sure you want to change the base?
Conversation
@PaulAsjes this wouldnt be overwritten right? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This won't be overwritten by autogen, which is why we need way more tests here imo.
|
||
async_client = AsyncElevenLabs() | ||
|
||
def test_generate_stream() -> None: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No assertions? This test doesn't appear to do anything if there isn't a human listening in.
from elevenlabs import AsyncElevenLabs | ||
from elevenlabs import play | ||
|
||
async_client = AsyncElevenLabs() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is entirely new and isn't autogenerated (and so no autogenerated tests) I think this needs way more tests before we can ship it.
based off #358