Refactor: Move personality button

This commit is contained in:
gpt-engineer-app[bot]
2025-10-16 20:25:40 +00:00
parent 58a226a86f
commit 3f6cdd8f97
3 changed files with 71 additions and 64 deletions
+3 -5
View File
@@ -90,6 +90,8 @@ export const ChatView = () => {
showModelSelector={true}
selectedModel={selectedModel}
onModelChange={setSelectedModel}
systemPrompt={systemPrompt}
onSystemPromptChange={setSystemPrompt}
/>
<ScrollArea className="flex-1">
@@ -119,11 +121,7 @@ export const ChatView = () => {
</div>
</ScrollArea>
<ChatInput
onSendMessage={handleSendMessage}
systemPrompt={systemPrompt}
onSystemPromptChange={setSystemPrompt}
/>
<ChatInput onSendMessage={handleSendMessage} />
</div>
</div>
);