Feature #3103
Feature #3024: extension 0.92.20 & 0.93: Enable OpenAI answers
BE: Change OpenAI API call
Description
Change OpenAI API call to:
POST /v1/completions
{
"model": "text-davinci-003",
"prompt": <ourPrompt>,
"temperature": 0,
"max_tokens": 60,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0
}
ourPrompt = concat("explain", <what user typed>, "with one example in 30 words or less")
Updated by Anonymous almost 2 years ago
- Due date set to 07/03/2023
- Status changed from New to In Progress
- Estimated time set to 3.00 h
Updated by Anonymous almost 2 years ago
- Status changed from In Progress to Resolved
- % Done changed from 0 to 100
Updated by Anonymous almost 2 years ago
- Status changed from Resolved to Feedback
- Assignee changed from Anonymous to Ram Kordale
Working as expected
Updated by Ram Kordale almost 2 years ago
- Description updated (diff)
- Status changed from Feedback to Reopened
- Assignee changed from Ram Kordale to Anonymous
Updated by Ram Kordale almost 2 years ago
reopened because of changed requirement for
ourPrompt = concat("explain", <what user typed>, "with one example in 30 words or less")
Updated by Anonymous almost 2 years ago
- Status changed from Reopened to In Progress
- % Done changed from 100 to 70
Updated by Anonymous almost 2 years ago
- Status changed from In Progress to Resolved
- % Done changed from 70 to 100
Updated by Anonymous almost 2 years ago
- Assignee changed from Anonymous to Ram Kordale
Working as expected
Updated by Anonymous over 1 year ago
- Subject changed from Change OpenAI API call to BE: Change OpenAI API call