Skip to content

Commit

Permalink
Merge pull request #895 from WolframResearch/bugfix/use-correct-servi…
Browse files Browse the repository at this point in the history
…ce-for-programmatic-rag-functions

Bugfix: Using RelatedDocumentation programmatically was always trying to use LLMKit, event when not available
  • Loading branch information
rhennigan authored Nov 9, 2024
2 parents 62c187a + 1914ad5 commit a9d415e
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 a9d415e

Please sign in to comment.