We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbabd8e commit 7b3ab62Copy full SHA for 7b3ab62
complex-agents/teleprompter/cartesia-ink.py
@@ -11,6 +11,7 @@
11
load_dotenv(dotenv_path=Path(__file__).parent.parent / '.env')
12
13
async def entrypoint(ctx: JobContext):
14
+ await ctx.connect()
15
session = AgentSession()
16
17
# Register RPC method for frontend to retrieve transcript data
@@ -60,4 +61,4 @@ async def send_transcript():
60
61
)
62
63
if __name__ == "__main__":
- cli.run_app(WorkerOptions(entrypoint_fnc=entrypoint))
64
+ cli.run_app(WorkerOptions(entrypoint_fnc=entrypoint))
0 commit comments