Skip to content

Commit

Permalink
Bugfix: Using RelatedDocumentation programmatically was always trying…
Browse files Browse the repository at this point in the history
… to use LLMKit, event when not available
  • Loading branch information
rhennigan committed Nov 9, 2024
1 parent 62c187a commit 1914ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Chatbook/LLMUtilities.wl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Needs[ "Wolfram`Chatbook`Common`" ];
(* ::**************************************************************************************************************:: *)
(* ::Section::Closed:: *)
(*Configuration*)
$llmSynthesizeAuthentication := If[ TrueQ @ $llmKit, "LLMKit", Automatic ];
$llmSynthesizeAuthentication := If[ TrueQ @ $llmKit && StringQ @ $llmKitService, "LLMKit", Automatic ];

$defaultLLMSynthesizeEvaluator :=
If[ TrueQ @ $llmKit && StringQ @ $llmKitService,
Expand Down

0 comments on commit 1914ad5

Please sign in to comment.