fix(core): update

This commit is contained in:
Philipp Kunz 2024-04-01 03:00:23 +02:00
parent 181193352e
commit 268178f024
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartai',
version: '0.0.7',
version: '0.0.8',
description: 'a standardaized interface to talk to AI models'
}

View File

@ -58,7 +58,7 @@ export class OpenAiProvider extends MultiModal {
}[]
) {
const result = await this.openAiApiClient.chat.completions.create({
model: 'gpt-3.5-turbo-16k-0613',
model: 'gpt-4-turbo-preview',
messages: [
{ role: 'system', content: systemMessage },
...messageHistory,