Pro mode selector: saver mode (#153)

This commit is contained in:
Will Chen
2025-05-13 12:24:32 -07:00
committed by GitHub
parent 14d9a12464
commit 3763423dc7
5 changed files with 101 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
import { ModelPicker } from "./ModelPicker";
import { ProModeSelector } from "./ProModeSelector";
export function ChatInputControls() {
return (
<div className="pb-2 flex gap-2">
<ModelPicker />
<ProModeSelector />
</div>
);
}