10
10
# ' viewer pane instead of a web browser. Default is `FALSE`.
11
11
# ' - `searcher.default_keyword`: Suffix keyword to generate accurate results
12
12
# ' between either `"base"` or `"tidyverse"`. Default is `"base"`.
13
- # ' - ...
13
+ # ' - Other options are used to set the default prompts for AI services
14
+ # ' - `searcher.chatgpt_prompt`: Default prompt for OpenAI's ChatGPT.
15
+ # ' - `searcher.claude_prompt`: Default prompt for Anthropic's Claude AI.
16
+ # ' - `searcher.perplexity_prompt`: Default prompt for Perplexity AI.
17
+ # ' - `searcher.mistral_prompt`: Default prompt for Mistral AI's Le Chat.
18
+ # ' - `searcher.bing_copilot_prompt`: Default prompt for Microsoft's (Bing) Copilot.
19
+ # ' - `searcher.grok_prompt`: Default prompt for xAI's Grok AI.
20
+ # ' - `searcher.meta_ai_prompt`: Default prompt for Meta's AI.
14
21
# '
15
22
" _PACKAGE"
16
23
@@ -25,7 +32,8 @@ searcher_default_options = list(
25
32
searcher.perplexity_prompt = " Answer with a focus on R programming and statistics. Include reliable sources when possible." ,
26
33
searcher.mistral_prompt = " As an R expert, please help with this question. Include code examples if relevant." ,
27
34
searcher.bing_copilot_prompt = " Please help with this R programming question. Provide working code examples." ,
28
- searcher.metaai_prompt = " You're an R programming assistant. Answer questions with practical examples."
35
+ searcher.grok_prompt = " As an R programming assistant, provide clear and concise answers with practical examples." ,
36
+ searcher.meta_ai_prompt = " You're an R programming assistant. Answer questions with practical examples."
29
37
)
30
38
31
39
.onLoad = function (libname , pkgname ) {
0 commit comments