Skip to content

Commit

Permalink
Switched to 4o
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Clark committed Sep 25, 2024
1 parent 5f7133c commit 1b3a04f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/features/chat/chat-services/chat-thread-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export const CreateChatThread = async () => {
createdAt: new Date(),
isDeleted: false,
chatType: "simple",
model: "gpt-4",
model: "gpt-4o",
conversationStyle: "precise",
type: CHAT_THREAD_ATTRIBUTE,
};
Expand Down
2 changes: 1 addition & 1 deletion src/features/chat/chat-services/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export interface ChatMessageModel {

export type ConversationStyle = "creative" | "balanced" | "precise";
export type ChatType = "simple" | "data" | "mssql";
export type LLMModel = "gpt-3.5" | "gpt-4";
export type LLMModel = "gpt-4o";

export type ChatRole = "system" | "user" | "assistant" | "function";

Expand Down
2 changes: 1 addition & 1 deletion src/features/chat/chat-ui/chat-model-selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const ChatModelSelector: FC<Prop> = (props) => {
<TabsTrigger value="gpt-3.5" disabled={props.disable}>
⚡ GPT-3.5
</TabsTrigger>
<TabsTrigger value="gpt-4" disabled={props.disable}>
<TabsTrigger value="gpt-4o" disabled={props.disable}>
✨ GPT-4
</TabsTrigger>
</TabsList>
Expand Down

0 comments on commit 1b3a04f

Please sign in to comment.