@@ -217,7 +217,7 @@ export const ModelInput: FC = ({ >
- + {hasAttachInput && ( <> {!blocked && ( @@ -12,9 +12,9 @@ function tierModifierClass(token: number): string { return classes['predictPrice--high'] } -export function PredictPrice({ token }: { token: number }) { - const modifier = tierModifierClass(token) - const isHighCost = token >= 150 +export function PredictPrice({ token, isChatBot = false }: { token: number; isChatBot?: boolean }) { + const modifier = isChatBot ? tierModifierClass(token) : '' + const isHighCost = isChatBot && token >= 150 return (