diff --git a/PacletInfo.wl b/PacletInfo.wl index 053279b2..fd1139d9 100644 --- a/PacletInfo.wl +++ b/PacletInfo.wl @@ -3,7 +3,7 @@ PacletObject[<| "Name" -> "Wolfram/Chatbook", "PublisherID" -> "Wolfram", - "Version" -> "0.0.24", + "Version" -> "0.0.25", "WolframVersion" -> "13.2+", "Description" -> "Wolfram Notebooks + LLMs", "License" -> "MIT", diff --git a/Source/Chatbook/Formatting.wl b/Source/Chatbook/Formatting.wl index 16c54c1d..84355fff 100644 --- a/Source/Chatbook/Formatting.wl +++ b/Source/Chatbook/Formatting.wl @@ -503,8 +503,8 @@ makeToolCallBoxLabel[ as_Association, name_String ] := makeToolCallBoxLabel[ as_, name_String, icon_ ] /; $dynamicText := makeToolCallBoxLabel0[ as, name, icon ]; -makeToolCallBoxLabel[ as_, name_String, icon_ ] := - OpenerView @ { +makeToolCallBoxLabel[ as_, name_String, icon_ ] := OpenerView[ + { makeToolCallBoxLabel0[ as, name, icon ], Column[ { @@ -530,7 +530,9 @@ makeToolCallBoxLabel[ as_, name_String, icon_ ] := }, Alignment -> Left ] - }; + }, + Method -> "Active" +]; makeToolCallBoxLabel // endDefinition;