From 268178f024ee18dde93ef1efaa9be5e799343ade Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 1 Apr 2024 03:00:23 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/provider.openai.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 11d7fa8..9fed5ad 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -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' } diff --git a/ts/provider.openai.ts b/ts/provider.openai.ts index c078dfd..20136d7 100644 --- a/ts/provider.openai.ts +++ b/ts/provider.openai.ts @@ -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,