Fix documentation of authelia OIDC integration by:
- improve docker run command with '--rm'
- switch to newer yaml syntax for authelia identity provider definition
- fill correct OPENID_ISSUER and OPENID_CALLBACK_URL in dotenv file
Co-authored-by: Danny Avila <danny@librechat.ai>
* Update mcp_servers.mdx to reflect correct MCP documentation URL
The URL for MCP documentation was wrong
* Provide documentation for Monitoring/Metrics
We wrote a LibreChat metrics exporter for Prometheus a while ago and
have been running it on our production LibreChat for a while to monitor
how the tool is being used and to alert us if there are any problems.
This patch adds a simple documentation (because deploying is actually
pretty simple) of how to set-up the metrics exporter for your LibreChat.
We are hoping this will help others as well.
* 📘 docs: Add YouTube API integration details to tools documentation
* chore: Update upload-artifact action to version 4 in bundle analysis workflow
* feat: Add OPENID_USE_END_SESSION_ENDPOINT option for logout redirection in OIDC configurations
---------
Co-authored-by: Aldrin Salazar <salazar.aldrin@gmail.com>
Co-authored-by: Lars Kiesow <lkiesow@uos.de>
Co-authored-by: Danilo Pejakovic <danilo.pejakovic@leoninestudios.com>
* started with the docs
* Update Apple OAuth2-OIDC authentication configuration guide
Expanded and clarified the configuration process for integrating Apple OAuth2 authentication with LibreChat. Organized instructions with improved structure, added detailed steps, and included image references for better guidance. Enhanced troubleshooting section for common issues and solutions.
* ✨ style: enhance toc and sidebar footer with gradient background and sticky positioning
* refactor: URL encoding guidelines for query parameters
* WIP: re-organize model specs information
* WIP: remove duplicate docs
* docs: add imageDetail parameter for image quality in URL query documentation
* docs: update model specs documentation with parameter descriptions and examples
* docs: add required field indication for list in model specs documentation
* docs: add append_current_datetime option to model specs and URL query documentation
* 📘 docs: URL query params for dynamic chat configuration
* 📘 docs: update AI Endpoints and URL query examples for clarity and consistency
* 📘 docs: add 'Artifacts - Generative UI' to features metadata
* 📘 docs: update Code Interpreter API limitations and add Rscript support
* 🚀 feat: Add recursionLimit to Agents Config for controlling maximum recursion depth
* fix: sparkles overflow, remove for now
* docs: mark plugins feature as deprecated in favor of Agents
* feat: add Code Interpreter API section to documentation and footer menu
* ✨ feat: update home page layout and add usage statistics components
* 🔃 chore: clean up eslint-module-utils dependency entries in pnpm-lock.yaml
* ✨ feat: a lot of things
* ✨ feat: UI adjustements
* ✨ feat: improve author card links, update background colors, and enhance layout responsiveness
* chore: update bun
* ✨ feat: update GitHub stars and Docker pulls statistics
* ✨ feat: update demo link to new preview URL
* ✨ feat: update features section with new Code Interpreter and adjust layout
* ✨ feat: add emoji to Quick Start title for enhanced visibility
* refactor: move user guides to features section
* ✨ feat: add emojis to installation and user guides for improved clarity
* ✨ feat: update Hero component title and description for clarity and enhance demo link
* feat: agents page
* ✨ feat: update agents documentation to clarify built-in tools and mention future integrations
* ✨ feat: add Code Interpreter API documentation and update agents metadata
* ✨ feat: add Code Interpreter page metadata and integrate sparkles effect in Hero component
* chore: comment out NewsletterForm component in Home page
* style: code interpreter gif for features box
* fix: update Agents link to point to the correct features documentation
* fix: pnpm lockfile
* docs: API key notes for code interpreter api
* refactor: improve MobileSwitch component with TypeScript types and null check
* chore: types, packages
* chore: update ESLint configuration and add linting step to CI workflow
fix: update rotate prop type in Card component to accept number or string
* docs: add section on intellectual property protection for Code Interpreter
* docs: refine agents customization features in documentation
* style: hero page
---------
Co-authored-by: Marco Beretta <81851188+berry-13@users.noreply.github.com>
I put LibreChat on a VPS and was trying out the Artifacts feature but noticed the apps wouldn't load. The right panel would show:
```
"This content is blocked. Contact the site owner to fix the issue."
```
and then
```
Couldn't connect to server
This means sandpack cannot connect to the runtime or your network is having some issues. Please check the network tab in your browser and try again. If the problem persists, report it via email or submit an issue on GitHub.
ENV: create-react-app
ERROR: TIME_OUT
```
I updated my web server's Content-Security-Policy to include `frame-src 'self' https://*.codesandbox.io` and that fixed the issue. I figured I would document that here for others.