Skip to content

Commit 36068e6

Browse files
committed
Enable progress detail text by default
1 parent 3b8cc79 commit 36068e6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Source/Chatbook/Settings.wl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ $defaultChatSettings = <|
7373
"SendToolResponse" -> Automatic,
7474
"SetCellDingbat" -> True,
7575
"ShowMinimized" -> Automatic,
76+
"ShowProgressText" -> Automatic,
7677
"SplitToolResponseMessages" -> Automatic,
7778
"StopTokens" -> Automatic,
7879
"StreamingOutputMethod" -> Automatic,
@@ -400,6 +401,7 @@ $modelAutoSettings[ Automatic, Automatic ] = <|
400401
"ExcludedBasePrompts" -> { ParentList },
401402
"PresencePenalty" -> 0.1,
402403
"ReplaceUnicodeCharacters" -> False,
404+
"ShowProgressText" -> True,
403405
"SplitToolResponseMessages" -> False,
404406
"Temperature" -> 0.7,
405407
"ToolResponseRole" -> "System"
@@ -654,7 +656,7 @@ resolveAutoSettings[ settings0_Association ] := Enclose[
654656
$excludedBasePrompts = DeleteDuplicates @ Select[ resolved[ "ExcludedBasePrompts" ], StringQ ];
655657
$endToken = resolved[ "EndToken" ];
656658

657-
If[ resolved[ "ForceSynchronous" ], $showProgressText = True ];
659+
If[ resolved[ "ShowProgressText" ] || resolved[ "ForceSynchronous" ], $showProgressText = True ];
658660

659661
setLLMKitFlags @ resolved;
660662
];

0 commit comments

Comments
 (0)