import React from 'react' import { BingConversationStyle } from '@/lib/bots/bing/types' import { cn } from '@/lib/utils' type ToneItem = { type: BingConversationStyle, name: string } const ToneList: ToneItem[] = [ { name: '有创造力', type: BingConversationStyle.Creative }, { name: '更平衡', type: BingConversationStyle.Balanced }, { name: '更精确', type: BingConversationStyle.Precise } ] interface ToneSelectorProps { type: BingConversationStyle | '' onChange?: (type: BingConversationStyle) => void } export function ToneSelector({ type, onChange }: ToneSelectorProps) { return (
选择对话样式
) }