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,