Skip to content

Commit a35d0b1

Browse files
committed
add gpt-4o-mini
1 parent f3a7025 commit a35d0b1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ https://github.com/intelligentnode/IntelliChat/assets/2751950/47d7db12-e299-449f
1919
## Features
2020

2121
- Select your preferred AI Provider and model from the UI.
22-
- **OpenAI ChatGPT**: gpt-4, gpt-3.5-turbo.
22+
- **OpenAI ChatGPT**: gpt-4, gpt-3.5-turbo, gpt-4o-mini.
2323
- **Google Gemini**.
2424
- **Azure Openai**.
2525
- **Cohere Coral**.

intellichat/intellinode.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ declare module 'intellinode' {
2929
}
3030

3131
class ChatGPTInput {
32-
model: string = 'gpt-3.5-turbo';
32+
model: string = 'gpt-4o-mini';
3333
temperature: number = 1;
3434
maxTokens: number | null = null;
3535
numberOfOutputs: number = 1;

intellichat/src/lib/ai-providers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { SupportedProvidersNamesType } from './validators';
44

5-
const OpenAIModels = ['gpt-4o', 'gpt-3.5-turbo', 'gpt-4', 'gpt-4-turbo-preview'] as const;
5+
const OpenAIModels = ['gpt-4o-mini', 'gpt-4o', 'gpt-3.5-turbo', 'gpt-4', 'gpt-4-turbo-preview'] as const;
66
const ReplicateModels = [
77
'70b-chat',
88
'13b-chat',

intellichat/src/store/chat-settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type ChatSettingsState = {
3333

3434
const initialProviders: ChatSettingsState['providers'] = {
3535
cohere: { name: 'cohere', model: 'command', apiKey: '' },
36-
openai: { name: 'openai', model: 'gpt-3.5-turbo', apiKey: '' },
36+
openai: { name: 'openai', model: 'gpt-4o-mini', apiKey: '' },
3737
replicate: {
3838
name: 'replicate',
3939
model: '70b-chat',

0 commit comments

Comments
 (0)