From 44599a4047be73acb203501594d01e19107b688b Mon Sep 17 00:00:00 2001 From: Etienne Pot Date: Wed, 18 Feb 2026 16:23:19 -0800 Subject: [PATCH] Supports Extension in inspect display PiperOrigin-RevId: 872092598 --- dialog/_src/string/tool_grammar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialog/_src/string/tool_grammar.py b/dialog/_src/string/tool_grammar.py index e8c239f..c20b36a 100644 --- a/dialog/_src/string/tool_grammar.py +++ b/dialog/_src/string/tool_grammar.py @@ -202,7 +202,7 @@ def _parser() -> lark.Lark: start: TOOL_NAME dict # Call name (e.g. `declaration:foo`) - TOOL_NAME: CNAME COLON /[ a-zA-Z0-9_:\/\\.()-]+/ + TOOL_NAME: CNAME COLON /[ a-zA-Z0-9_:'"\/\\.()-]+/ # TOOL_NAME: /[^{]+/ # Match all characters until `{`. # Body