-
Notifications
You must be signed in to change notification settings - Fork 6
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
Add KoalaFilter docs #67
Conversation
pip install pipecat-ai[koala] | ||
``` | ||
|
||
You'll also need to set up your OpenAI API key as an environment variable: `KOALA_ACCESS_KEY` |
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.
replace OpenAI API
|
||
<ParamField path="AudioRawFrame" type="Frame" required> | ||
Raw audio data for noise reduction processing | ||
</ParamField> |
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.
AudioRawFrame
are not input frames actually. The filter is called directly from the transport. It's actually not a processor.
306cfe1
to
15b8f03
Compare
) | ||
``` | ||
|
||
## Frame Flow |
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.
Not sure if this is considered Frame flow.
Btw, it does support the FilterEnableFrame
and the settings one, but because the transport passes it to them (i.e. they don't receive them from the pipeline directly, but indirectly through the transport).
15b8f03
to
b512090
Compare
b512090
to
78b54c2
Compare
I've made those changes. I think this should be ready to go. |
LGTM! |
Depends on: pipecat-ai/pipecat#886