Remove Julia greeting on voice call start

Users expect to speak immediately after pressing the call button,
like any messaging app. The greeting was interrupting users who
started talking right away.

Now Julia will only respond after the user speaks first.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Sergei 2026-01-29 16:37:05 -08:00
parent a1ff324a5a
commit 5174366384

View File

@ -467,8 +467,9 @@ async def entrypoint(ctx: JobContext):
), ),
) )
# Generate initial greeting - simple and direct # No greeting - user expects to speak immediately after pressing the call button
await session.say("Hi! I'm Julia, your AI care assistant. How can I help you today?") # (like any messaging app: press mic → start talking)
# Julia will respond only after the user speaks first
if __name__ == "__main__": if __name__ == "__main__":