Skip to content

Commit

Permalink
Merge pull request #935 from WolframResearch/bugfix/missing-comma
Browse files Browse the repository at this point in the history
Bugfix: Added missing comma
  • Loading branch information
rhennigan authored Nov 19, 2024
2 parents 91e08e4 + a636805 commit ecaaf94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Chatbook/PreferencesContent.wl
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ makeModelSelector0[ type_String, services_Association? AssociationQ ] := Enclose
Spacer[ 5 ],
highlight[
Dynamic[ If[ service === "LLMKit", "", tr[ "PreferencesContentModelLabel" ] ] ],
Dynamic[ If[ service === "LLMKit", "",
Dynamic[ If[ service === "LLMKit", "",
If[ state === "Loading" || MatchQ[ modelSelector, _Symbol ], $loadingPopupMenu, modelSelector ] ],
TrackedSymbols :> { state, modelSelector }
],
Expand Down Expand Up @@ -1279,7 +1279,7 @@ makeLLMPanel[ ] :=
DynamicModule[ { },
(* Display a progress indicator until $LLMKitInfo is set via initialization *)
ProgressIndicator[ Appearance -> "Percolate" ],
Initialization :> ( Wolfram`LLMFunctions`Common`UpdateLLMKitInfo[ ] )
Initialization :> ( Wolfram`LLMFunctions`Common`UpdateLLMKitInfo[ ] ),
SynchronousInitialization -> False
],
"NotCloudConnected" ->
Expand Down

0 comments on commit ecaaf94

Please sign in to comment.