返回顶部
c

chat-ui聊天UI组件

Chat UI building blocks for React/Next.js from ui.inference.sh. Components: container, messages, input, typing indicators, avatars. Capabilities: chat interfaces, message lists, input handling, streaming. Use for: building custom chat UIs, messaging interfaces, AI assistants. Triggers: chat ui, chat component, message list, chat input, shadcn chat," react chat, chat interface, messaging ui, conversation ui, chat building blocks

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.5
安全检测
已通过
1,347
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

chat-ui

技能名称: chat-ui
详细描述:

聊天UI组件

来自 ui.inference.sh 的聊天构建模块。

聊天UI组件

快速开始

bash

安装聊天组件


npx shadcn@latest add https://ui.inference.sh/r/chat.json

组件

聊天容器

tsx
import { ChatContainer } from @/registry/blocks/chat/chat-container


{/ 消息放在这里 /}

消息

tsx
import { ChatMessage } from @/registry/blocks/chat/chat-message

role=user
content=你好,你能帮我什么?
/>

role=assistant
content=我可以帮你做很多事情!
/>

聊天输入框

tsx
import { ChatInput } from @/registry/blocks/chat/chat-input

onSubmit={(message) => handleSend(message)}
placeholder=输入消息...
disabled={isLoading}
/>

输入指示器

tsx
import { TypingIndicator } from @/registry/blocks/chat/typing-indicator

{isTyping && }

完整示例

tsx
import {
ChatContainer,
ChatMessage,
ChatInput,
TypingIndicator,
} from @/registry/blocks/chat

export function Chat() {
const [messages, setMessages] = useState([])
const [isLoading, setIsLoading] = useState(false)

const handleSend = async (content: string) => {
setMessages(prev => [...prev, { role: user, content }])
setIsLoading(true)
// 发送到API...
setIsLoading(false)
}

return (

{messages.map((msg, i) => (

))}
{isLoading && }


)
}

消息变体

角色描述
user用户消息(右对齐)
assistant
AI响应(左对齐) | | system | 系统消息(居中) |

样式

组件使用Tailwind CSS和shadcn/ui设计令牌:

tsx
role=assistant
content=你好!
className=bg-muted
/>

相关技能

bash

完整代理组件(推荐)


npx skills add inference-sh/skills@agent-ui

声明式小部件

npx skills add inference-sh/skills@widgets-ui

Markdown渲染

npx skills add inference-sh/skills@markdown-ui

文档

组件文档:ui.inference.sh/blocks/chat

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 chat-ui-1776352579 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 chat-ui-1776352579 技能

通过命令行安装

skillhub install chat-ui-1776352579

下载

⬇ 下载 chat-ui v0.1.5(免费)

文件大小: 1.88 KB | 发布时间: 2026-4-17 15:55

v0.1.5 最新 2026-4-17 15:55
- Added comprehensive documentation (SKILL.md) for chat-ui, detailing available components and usage.
- Included code examples for ChatContainer, ChatMessage, ChatInput, and TypingIndicator.
- Provided a full example for building a chat interface with message state and input handling.
- Listed message role variants and associated UI behaviors.
- Offered related skills, styling tips, and links to further documentation and best practices.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部