aboutsummaryrefslogtreecommitdiff
path: root/src/client/apis/gpt/GPT.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/apis/gpt/GPT.ts')
-rw-r--r--src/client/apis/gpt/GPT.ts10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/client/apis/gpt/GPT.ts b/src/client/apis/gpt/GPT.ts
index 066510a6a..dc969da16 100644
--- a/src/client/apis/gpt/GPT.ts
+++ b/src/client/apis/gpt/GPT.ts
@@ -5,9 +5,8 @@ export enum GPTTypeStyle {
AssignTags = 1,
Filter = 2,
DocInfo = 3,
- ChooseDoc = 4,
- GeneralInfo = 5,
- SortDocs = 6,
+ GeneralInfo = 4,
+ SortDocs = 5,
}
enum GPTCallType {
SUMMARY = 'summary',
@@ -136,12 +135,11 @@ const callTypeMap: { [type: string]: GPTCallOpts } = {
prompt: `I'm going to provide you with a question.
Based on the question, is the user asking you to
${GPTTypeStyle.AssignTags}. Assigns docs with tags(like star / heart etc)/labels,
- ${GPTTypeStyle.ChooseDoc}. Filter docs,
${GPTTypeStyle.DocInfo}. Provide information about a specific doc
- ${GPTTypeStyle.Filter}. Provide a specific doc based on a question/information
+ ${GPTTypeStyle.Filter}. Filter docs based on a question/information
${GPTTypeStyle.GeneralInfo}. Provide general information
${GPTTypeStyle.SortDocs}. Put cards in a specific order.
- Answer with only the number for 2-6. For number one, provide the number (1) and the appropriate tag`,
+ Answer with only the number for 2-5. For number one, provide the number (1) and the appropriate tag`,
},
subset: {
model: 'gpt-4-turbo',