diff --git a/pages/docs/configuration/dotenv.mdx b/pages/docs/configuration/dotenv.mdx index f6226b45..2661795f 100644 --- a/pages/docs/configuration/dotenv.mdx +++ b/pages/docs/configuration/dotenv.mdx @@ -959,11 +959,11 @@ Properly setting cache headers is crucial for optimizing the performance and eff **Behaviour:** -* Uncomment `CUSTOM_FOOTER` to add a custom footer. -* Uncomment and leave `CUSTOM_FOOTER` empty to remove the footer. -* You can now add one or more links in the CUSTOM_FOOTER value using the following format: `[Anchor text](URL)`. Each link should be delineated with a pipe (`|`). + * Uncomment `CUSTOM_FOOTER` to add a custom footer. + * Uncomment and leave `CUSTOM_FOOTER` empty to remove the footer. + * You can now add one or more links in the CUSTOM_FOOTER value using the following format: `[Anchor text](URL)`. Each link should be delineated with a pipe (`|`). -> **Markdown example:** `CUSTOM_FOOTER=[Link 1](http://example1.com) | [Link 2](http://example2.com)` + > **Markdown example:** `CUSTOM_FOOTER=[Link 1](http://example1.com) | [Link 2](http://example2.com)` #### Birthday Hat diff --git a/pages/docs/configuration/librechat_yaml/object_structure/interface.mdx b/pages/docs/configuration/librechat_yaml/object_structure/interface.mdx index 3aa2d407..9b8d01c5 100644 --- a/pages/docs/configuration/librechat_yaml/object_structure/interface.mdx +++ b/pages/docs/configuration/librechat_yaml/object_structure/interface.mdx @@ -17,6 +17,7 @@ These are fields under `interface`: - `bookmarks` - `multiConvo` - `agents` + - `customWelcome` **Notes:** @@ -49,6 +50,7 @@ interface: bookmarks: true multiConvo: true agents: true + customWelcome: "Welcome to LibreChat!" ``` ## privacyPolicy @@ -241,4 +243,24 @@ More info on [Agents](/docs/features/agents) ```yaml filename="interface / agents" interface: agents: true -``` \ No newline at end of file +``` + +--- + +## customWelcome + +**Key:** + + +**Default:** _None (if not specified, a default greeting is used)_ + +**Example:** +```yaml filename="interface / customWelcome" +interface: + customWelcome: "Welcome to LibreChat! Enjoy your conversation." +``` +