> ## Documentation Index
> Fetch the complete documentation index at: https://langchain-zh.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# 自定义错误支持信息

> 为自托管部署在 LangSmith 前端自定义支持联系信息。

## 自定义错误支持信息

默认情况下，LangSmith 中的错误信息会引导用户联系 `support@langchain.dev`。你可以将其替换为你自己的支持联系信息。

设置后，整个用户界面中的所有错误和支持信息都将显示你自定义的文本，而非默认的 LangChain 支持邮箱。

<Note>
  自定义信息仅以**纯文本**形式渲染。HTML 标签不会被解析，将直接显示为字面文本。
</Note>

<CodeGroup>
  ```yaml Helm theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
  config:
    customErrorSupportMessage: "如需帮助，请联系内部 IT 团队：helpdesk@example.com"
  ```

  ```yaml Docker Compose theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
  services:
    langchain-frontend:
      environment:
        - CUSTOM_ERROR_SUPPORT_MESSAGE=如需帮助，请联系内部 IT 团队：helpdesk@example.com
  ```
</CodeGroup>

若要恢复默认行为，请删除此设置或将其设为空字符串。

***

<div className="source-links">
  <Callout icon="edit">
    [Edit this page on GitHub](https://github.com/langchain-ai/docs/edit/main/src/i18n\zh-CN\langsmith\self-host-ui-customization.mdx) or [file an issue](https://github.com/langchain-ai/docs/issues/new/choose).
  </Callout>

  <Callout icon="terminal-2">
    [Connect these docs](/use-these-docs) to Claude, VSCode, and more via MCP for real-time answers.
  </Callout>
</div>
