File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
packages/gitbook/src/components/AIChat Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import {
1414} from '../AI' ;
1515import { EmbeddableFrame } from '../Embeddable/EmbeddableFrame' ;
1616import { useNow } from '../hooks' ;
17- import { Button } from '../primitives' ;
17+ import { Button , DropdownMenuSeparator } from '../primitives' ;
1818import { DropdownMenu , DropdownMenuItem } from '../primitives' ;
1919import { AIChatIcon } from './AIChatIcon' ;
2020import { AIChatInput } from './AIChatInput' ;
@@ -111,8 +111,18 @@ export function AIChat(props: { trademark: boolean }) {
111111 }
112112 className = "size-3 shrink-0 text-tint-subtle"
113113 />
114- { chat . size === 'default' ? 'Maximize' : 'Minimize' }
114+ < div className = "flex flex-col gap-0.5" >
115+ < p className = "font-medium" >
116+ { chat . size === 'default' ? 'Maximize' : 'Minimize' }
117+ </ p >
118+ < p className = "text-tint text-xs" >
119+ { chat . size === 'default'
120+ ? 'Longer, more detailed answers'
121+ : 'Shorter, more concise answers' }
122+ </ p >
123+ </ div >
115124 </ DropdownMenuItem >
125+ < DropdownMenuSeparator />
116126 < DropdownMenuItem
117127 onClick = { ( ) => {
118128 chatController . clear ( ) ;
You can’t perform that action at this time.
0 commit comments