From 2dc200d2f7fff0709ffa21b9d488bb2fcfea5922 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Fri, 26 Sep 2025 17:38:57 +0200 Subject: [PATCH] Update latency message to display seconds instead of milliseconds --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index a58b64e..e49c7a6 100644 --- a/main.py +++ b/main.py @@ -233,7 +233,7 @@ def get_latency(ctx: RunContext[BotDependencies]) -> str: A string with the current latency information. """ latency: float | Literal[0] = ctx.deps.client.latency if ctx.deps.client else 0 - return f"Current latency: {latency} ms" + return f"Current latency: {latency} seconds" @agent.instructions