Skip to content

docs: add branding config and disableProviderUpload per-endpoint field#557

Open
shqear93 wants to merge 3 commits into
LibreChat-AI:mainfrom
shqear93:feat/whitelabel-branding
Open

docs: add branding config and disableProviderUpload per-endpoint field#557
shqear93 wants to merge 3 commits into
LibreChat-AI:mainfrom
shqear93:feat/whitelabel-branding

Conversation

@shqear93
Copy link
Copy Markdown

@shqear93 shqear93 commented Apr 11, 2026

Summary

Documentation updates accompanying the implementation PR: danny-avila/LibreChat#12622

  • New page: branding object structure — documents the new branding config block with fields for appLogo, authLogo, favicon, meta, and theme (light/dark RGB token maps)
  • Updated: fileConfig object structure — adds disableProviderUpload field under endpoint config

Changes

New

  • content/docs/configuration/librechat_yaml/object_structure/branding.mdx — full branding block reference with examples
  • Registered in meta.json under the General section

Modified

  • content/docs/configuration/librechat_yaml/object_structure/file_config.mdx

    • Added disableProviderUpload to the endpoints overview list
    • Added ## disableProviderUpload section with description, default, and YAML example
  • content/docs/configuration/librechat_yaml/object_structure/interface.mdx

    • Removed hideProviderUploadForEndpoints section

Config shape (new branding block)

branding:
  appLogo: "https://cdn.example.com/logo.svg"
  authLogo: "https://cdn.example.com/auth-logo.svg"
  favicon: "https://cdn.example.com/favicon.ico"
  meta:
    title: "My AI Assistant"
    description: "Powered by LibreChat"
  theme:
    light:
      primary: "210 100% 40%"
      background: "0 0% 100%"
    dark:
      primary: "210 100% 60%"
      background: "222 20% 10%"

Config shape (disableProviderUpload)

fileConfig:
  endpoints:
    litellm:
      disableProviderUpload: true
    custom:
      disableProviderUpload: true
    openAI:
      disableProviderUpload: true

🤖 Generated with Claude Code

shqear93 and others added 3 commits April 11, 2026 21:11
Documents the new `branding` config block added to LibreChat's
app-config pipeline, covering logos, favicon, browser/PWA metadata,
runtime color theme tokens, and UI behavior overrides.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
It is a UI behavior flag, not a branding concern. Documented under
interface alongside modelSelect, fileSearch, and similar toggles.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Moved to fileConfig.endpoints where file behavior config belongs.
Removed from interface.mdx, added to file_config.mdx.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 11, 2026

@shqear93 is attempting to deploy a commit to the LibreChat's projects Team on Vercel.

A member of the Team first needs to authorize it.

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 14d21afad9

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

**Notes:**
- Only hides "Upload to Provider". "Upload as Text" (RAG) and "File Search" are not affected.
- Can be set on any endpoint key: named custom endpoints (e.g. `litellm`), the generic `custom` fallback, or built-in endpoints like `openAI`.
- If set on `default`, it applies to all endpoints that do not have their own entry.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Restrict default fallback claim to non-assistants endpoints

This note says default applies to all endpoints without their own entry, but the same page already documents that the assistants endpoint does not use default settings. As written, operators can set disableProviderUpload under default expecting Assistants to inherit it, and then ship a config that leaves provider uploads enabled for Assistants unexpectedly.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant