From 51743663846a445bc8231130a0fa598d7434e39f Mon Sep 17 00:00:00 2001 From: Sergei Date: Thu, 29 Jan 2026 16:37:05 -0800 Subject: [PATCH] Remove Julia greeting on voice call start MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- julia-agent/julia-ai/src/agent.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/julia-agent/julia-ai/src/agent.py b/julia-agent/julia-ai/src/agent.py index 11ae0b4..01d7885 100644 --- a/julia-agent/julia-ai/src/agent.py +++ b/julia-agent/julia-ai/src/agent.py @@ -467,8 +467,9 @@ async def entrypoint(ctx: JobContext): ), ) - # Generate initial greeting - simple and direct - await session.say("Hi! I'm Julia, your AI care assistant. How can I help you today?") + # No greeting - user expects to speak immediately after pressing the call button + # (like any messaging app: press mic → start talking) + # Julia will respond only after the user speaks first if __name__ == "__main__":