- Ant Design X
- Changelogv2.0.0
- Model Integration
- Agent Integration
- Basic Usage
- Advanced Usage
- Migration
- Other
FAQ
Here are the frequently asked questions about Ant Design X and antd that you should look up before you ask in the community or create a new issue. Additionally, you can refer to previous issues for more information.
Currently, Ant Design X only provides a React version. Ant Design X is an AI interaction component library specifically designed for the React framework, and there are currently no plans for a Vue version.
If you are using the Vue tech stack, we recommend following our GitHub repository for the latest updates, or participating in open source contributions to help us support more frameworks.
Ant Design X is based on Ant Design's design system and has responsive capabilities. For mobile adaptation, we recommend the following approaches:
size prop of components, using small size on mobileConversations component's collapse functionalityimport { Bubble, Sender } from '@ant-design/x';import { ConfigProvider } from 'antd';const App = () => (<ConfigProvidertheme={{components: {// You can customize mobile styles here},}}><Bubble.Listitems={messages}size="small" // Use small size for mobile/><Sender placeholder="Please enter..." size="small" /></ConfigProvider>);
Currently, Ant Design X mainly targets desktop AI interaction scenarios. If you have special mobile requirements, we recommend implementing better experiences through custom styles or combining with mobile UI frameworks.