diff options
author | bobzel <zzzman@gmail.com> | 2025-02-14 00:29:49 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-02-14 00:29:49 -0500 |
commit | 4a9d8bf9e09a25faeba41c7ece46b86548d66847 (patch) | |
tree | d6fef55d66a3424a8be6e970a3de15b00786d52c /src/client/apis/gpt/GPT.ts | |
parent | b7845adf2904e18e237638a0bf907c6ec0fe06ee (diff) |
removed chooseDoc option from gpttypes because its redundant with Filter
Diffstat (limited to 'src/client/apis/gpt/GPT.ts')
-rw-r--r-- | src/client/apis/gpt/GPT.ts | 10 |
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', |