Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: strapi/strapi-plugin-open-ai
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.2
Choose a base ref
...
head repository: strapi/strapi-plugin-open-ai
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 2 commits
  • 6 files changed
  • 1 contributor

Commits on May 23, 2024

  1. Fix: issues with endpoints

    Mcastres committed May 23, 2024
    Copy the full SHA
    aab1df1 View commit details
  2. 1.0.3

    Mcastres committed May 23, 2024
    Copy the full SHA
    39f9b83 View commit details
4 changes: 2 additions & 2 deletions admin/src/api/completions/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { request } from '@strapi/helper-plugin';

const completions = {
create: async ({ model, prompt, temperature, maxTokens }) => {
create: async ({ model, messages, temperature, maxTokens }) => {
const data = await request(`/open-ai/completions`, {
method: 'POST',
body: { model, prompt, temperature, maxTokens },
body: { model, messages, temperature, maxTokens },
});
return data;
},
11 changes: 5 additions & 6 deletions admin/src/components/CMEditView/RightLinksCompo/index.js
Original file line number Diff line number Diff line change
@@ -126,13 +126,15 @@ const RightLinksCompo = () => {

const handlePromptSubmit = () => {
if (model && prompt && temperature && maxTokens) {
const messages = [{ role: 'user', content: prompt }];
setGenerateCompletionText('Generating completion...');
completionAPI
.create({ model, prompt, temperature, maxTokens })
.create({ model, messages, temperature, maxTokens })
.then((data) => {
console.log(data);
setCompletion(data?.choices[0]?.text.trim());
setFinishReason(data?.choices[0]?.finish_reason);
})
.finally(() => {
setGenerateCompletionText('Generate');
});
}
@@ -242,10 +244,7 @@ const RightLinksCompo = () => {
paddingLeft={4}
background="neutral0"
>
<Button
paddingTop={4}
onClick={() => handlePromptSubmit()}
>
<Button onClick={() => handlePromptSubmit()}>
{generateCompletionText}
</Button>
</Box>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-open-ai",
"version": "1.0.2",
"version": "1.0.3",
"description": "The official plugin that allows you to create Open AI completion from a prompt",
"strapi": {
"name": "open-ai",
8 changes: 4 additions & 4 deletions server/controllers/completions.js
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@ module.exports = ({ strapi }) => {
const completionService = strapi.plugins['open-ai'].services.completions;

const createCompletion = async (ctx) => {
const { model, prompt, temperature, maxTokens } = ctx.request.body;
const { model, messages, temperature, maxTokens } = ctx.request.body;

if (model && prompt && temperature && maxTokens) {
if (model && messages && temperature && maxTokens) {
try {
return completionService.createCompletion({
model,
prompt,
messages,
temperature,
maxTokens,
});
@@ -19,7 +19,7 @@ module.exports = ({ strapi }) => {
ctx.throw(500, err);
}
}
return ctx.throw(400, 'Either the prompt, temperature, model or maxToken parameter is missing');
return ctx.throw(400, 'Either the messages, temperature, model or maxToken parameter is missing');
};

return {
35 changes: 24 additions & 11 deletions server/services/completions.js
Original file line number Diff line number Diff line change
@@ -3,18 +3,31 @@
const fetch = require('node-fetch');

module.exports = ({ strapi }) => {
const createCompletion = async ({ model, prompt, temperature, maxTokens }) => {
const createCompletion = async ({
model,
messages,
temperature,
maxTokens,
}) => {
try {
const response = await fetch(`https://api.openai.com/v1/completions`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${strapi
.plugin('open-ai')
.config('API_TOKEN')}`,
},
body: JSON.stringify({ model, prompt, temperature, max_tokens: maxTokens }),
});
const response = await fetch(
`https://api.openai.com/v1/chat/completions`,
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${strapi
.plugin('open-ai')
.config('API_TOKEN')}`,
},
body: JSON.stringify({
model,
messages,
temperature,
max_tokens: maxTokens,
}),
}
);

const res = await response.json();
return res;
85 changes: 20 additions & 65 deletions server/services/settings.js
Original file line number Diff line number Diff line change
@@ -17,72 +17,27 @@ module.exports = ({ strapi }) => {
temperature: 1,
maxTokens: 16,
models: [
'babbage',
'ada',
'davinci',
'dall-e-3',
'whisper-1',
'davinci-002',
'babbage-002',
'dall-e-2',
'gpt-3.5-turbo-16k',
'tts-1-hd-1106',
'tts-1-hd',
'gpt-3.5-turbo-1106',
'gpt-3.5-turbo-instruct-0914',
'gpt-3.5-turbo-instruct',
'tts-1',
'gpt-3.5-turbo-0301',
'tts-1-1106',
'gpt-3.5-turbo-0125',
'text-embedding-3-large',
'gpt-3.5-turbo',
'text-embedding-3-small',
'gpt-3.5-turbo-0613',
'text-embedding-ada-002',
'babbage-code-search-code',
'text-similarity-babbage-001',
'text-davinci-001',
'curie-instruct-beta',
'babbage-code-search-text',
'babbage-similarity',
'curie-search-query',
'code-search-babbage-text-001',
'code-cushman-001',
'code-search-babbage-code-001',
'code-davinci-002',
'text-ada-001',
'text-similarity-ada-001',
'text-davinci-insert-002',
'ada-code-search-code',
'text-davinci-002',
'ada-similarity',
'text-davinci-003',
'code-search-ada-text-001',
'text-search-ada-query-001',
'text-curie-001',
'text-davinci-edit-001',
'davinci-search-document',
'ada-code-search-text',
'text-search-ada-doc-001',
'code-davinci-edit-001',
'davinci-instruct-beta',
'text-babbage-001',
'text-similarity-curie-001',
'code-search-ada-code-001',
'ada-search-query',
'text-search-davinci-query-001',
'curie-similarity',
'davinci-search-query',
'text-davinci-insert-001',
'babbage-search-document',
'ada-search-document',
'curie',
'text-search-babbage-doc-001',
'text-search-curie-doc-001',
'text-search-curie-query-001',
'babbage-search-query',
'text-search-davinci-doc-001',
'text-search-babbage-query-001',
'curie-search-document',
'text-similarity-davinci-001',
'audio-transcribe-001',
'davinci-similarity',
'cushman:2020-05-03',
'ada:2020-05-03',
'babbage:2020-05-03',
'curie:2020-05-03',
'davinci:2020-05-03',
'if-davinci-v2',
'if-curie-v2',
'if-davinci:3.0.0',
'davinci-if:3.0.0',
'davinci-instruct-beta:2.0.0',
'text-ada:001',
'text-davinci:001',
'text-curie:001',
'text-babbage:001',
'gpt-3.5-turbo-16k-0613',
],
};
await pluginStore.set({ key: 'settings', value });