Merge pull request #16600 from NousResearch/austin/fix/model-provider

fix(models): consolidate provider and model into /model command
This commit is contained in:
Austin Pickett 2026-04-27 08:14:27 -07:00 committed by GitHub
commit 60f2415a4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 92 additions and 34 deletions

View file

@ -655,7 +655,7 @@ export function useMainApp(gw: GatewayClient) {
const onModelSelect = useCallback((value: string) => {
patchOverlayState({ modelPicker: false })
slashRef.current(`/model ${value} --global`)
slashRef.current(`/model ${value}`)
}, [])
const hasReasoning = useTurnSelector(state => Boolean(state.reasoning.trim()))