import { useProviderContext } from '@agentscope-ai/chat'; import { theme as AntdTheme } from 'antd' export default function (props: { children }) { const { theme, getPrefixCls } = useProviderContext(); const isDarkMode = theme?.algorithm === AntdTheme.darkAlgorithm; const prefixCls = getPrefixCls('accordion-soft-light-title'); return