聊天 UI 文档

Helm

Hugging Face's logo
加入 Hugging Face 社区

并获得增强型文档体验的访问权限

开始使用

Helm

我们强烈建议不要使用该图表。Helm 图表尚在开发中,应被视为不稳定。图表可能会在未提供迁移指南或通知的情况下进行重大更改。欢迎贡献!

对于在 Kubernetes 上安装,您可以使用 /chart 中的 helm 图表。请注意,尚未设置任何图表存储库,因此您需要克隆存储库并通过路径安装图表。生产值可以在 chart/env/prod.yaml 中找到。

示例 values.yaml

replicas: 1

domain: example.com

service:
  type: ClusterIP

resources:
  requests:
    cpu: 100m
    memory: 2Gi
  limits:
    # Recommended to use large limits when web search is enabled
    cpu: "4"
    memory: 6Gi

envVars:
  MONGODB_URL: mongodb://chat-ui-mongo:27017
  # Ensure that your values.yaml will not leak anywhere
  # PRs welcome for a chart rework with envFrom support!
  HF_TOKEN: secret_token
< > 更新 在 GitHub 上