diff --git a/chatdesk-ui/components/utility/global-state.tsx b/chatdesk-ui/components/utility/global-state.tsx index 46501d9..192370e 100644 --- a/chatdesk-ui/components/utility/global-state.tsx +++ b/chatdesk-ui/components/utility/global-state.tsx @@ -96,13 +96,13 @@ export const GlobalState: FC = ({ children }) => { const [userInput, setUserInput] = useState("") const [chatMessages, setChatMessages] = useState([]) const [chatSettings, setChatSettings] = useState({ - model: "gpt-4-turbo-preview", + model: "GPT", prompt: "You are a helpful AI assistant.", temperature: 0.5, contextLength: 4000, includeProfileContext: true, includeWorkspaceInstructions: true, - embeddingsProvider: "openai" + embeddingsProvider: "bge-m3" }) const [selectedChat, setSelectedChat] = useState | null>(null) const [chatFileItems, setChatFileItems] = useState[]>([])