You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I appreciate the effort you put into this, enabling OpenAIs realtime API at such early stage.
Quick question:
What would be the ideal way to integrate this into a bigger framework, say NestJs?
It currently looks like the preferred approach is to start this via its own node process to access the worker CLI.
There are two problems I'm currently facing:
I already have a node process running (ideally including the dynamic agent config), namely the nest server (might be possible to enable this via subprocesses?)
I might not have the agent available at startup time eg.: if I want to let the app user configure behavioral aspects of the agent.
I'd appreciate any guidance!
The text was updated successfully, but these errors were encountered:
it is possible to run your worker programmatically! cli.runApp is a simple CLI wrapper on top of new Worker(new WorkerOptions(...)). you can feed whatever options whenever you want and simply start the worker without using CLI.
Hey guys,
I appreciate the effort you put into this, enabling OpenAIs realtime API at such early stage.
Quick question:
What would be the ideal way to integrate this into a bigger framework, say NestJs?
It currently looks like the preferred approach is to start this via its own node process to access the worker CLI.
There are two problems I'm currently facing:
I'd appreciate any guidance!
The text was updated successfully, but these errors were encountered: