> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ClickHouse 智能体

> ClickHouse Cloud 中 ClickHouse 智能体概述

export const galaxyOnClick = eventName => () => {
  try {
    if (typeof window !== "undefined" && window.galaxy && eventName) {
      window.galaxy.track(eventName, {
        interaction: "click"
      });
    }
  } catch (e) {}
};

export const BetaBadge = ({link, galaxyTrack, galaxyEvent}) => {
  if (link) {
    return <a href={link} target="_blank" rel="noopener noreferrer" className="betaBadge" onClick={galaxyTrack && galaxyEvent ? galaxyOnClick(galaxyEvent) : undefined}>
                <Icon />
                <span>Beta</span>
            </a>;
  }
  return <div className="betaBadge">
            <Icon />
            <span>
                Beta feature. 
                <u>
                    <a href="/docs/beta-and-experimental-features#beta-features">
                        Learn more.
                    </a>
                </u>
            </span>
        </div>;
};

ClickHouse 智能体让你无需自行编写 SQL 或编排逻辑，即可通过对话查询和探索 ClickHouse 数据。
智能体会理解你的意图、规划步骤、调用你已配置的工具，并将结果返回给你。
此功能目前处于 Beta 阶段；在正式发布前，其行为和能力可能会发生变化。

<div id="what-you-can-do">
  ## 你可以用它做什么
</div>

使用 ClickHouse 智能体，你可以：

* 无需编写代码即可构建自定义智能体。你可以编写指令、选择模型，并添加工具。
* 通过智能体与你的 ClickHouse 服务进行对话，智能体会按需调用工具。
* 与团队成员共享你的智能体，或将其发布到市场。

<div id="in-this-section">
  ## 本节内容
</div>

通过以下页面进一步了解 ClickHouse 智能体的各项功能：

| 页面                                                                   | 涵盖内容                                   |
| -------------------------------------------------------------------- | -------------------------------------- |
| [快速入门](/zh/products/cloud/features/ai-ml/agents/quickstart)          | 构建你的第一个智能体并运行示例查询                      |
| [聊天](/zh/products/cloud/features/ai-ml/agents/chat)                  | 会话、书签、分支、多对话和共享                        |
| [智能体构建器](/zh/products/cloud/features/ai-ml/agents/builder)           | 配置智能体、模型参数以及已连接的工具、MCP servers、技能和子智能体 |
| [提示词](/zh/products/cloud/features/ai-ml/agents/prompts)              | 已保存的提示词库                               |
| [Memory](/zh/products/cloud/features/ai-ml/agents/memory)            | 跨会话持久保留上下文                             |
| [市场](/zh/products/cloud/features/ai-ml/agents/marketplace)           | 在组织内共享和发现智能体                           |
| [共享与访问](/zh/products/cloud/features/ai-ml/agents/sharing-and-access) | 智能体的权限模型                               |
