|
| 1 | +# For more information, see the Configuration Guide: |
| 2 | +# https://www.librechat.ai/docs/configuration/librechat_yaml |
| 3 | + |
| 4 | +# Configuration version (required) |
| 5 | +version: 1.2.1 |
| 6 | + |
| 7 | +# Cache settings: Set to true to enable caching |
| 8 | +cache: true |
| 9 | + |
| 10 | +# Custom interface configuration |
| 11 | +interface: |
| 12 | + # Privacy policy settings |
| 13 | + privacyPolicy: |
| 14 | + externalUrl: 'https://librechat.ai/privacy-policy' |
| 15 | + openNewTab: true |
| 16 | + |
| 17 | + # Terms of service |
| 18 | + termsOfService: |
| 19 | + externalUrl: 'https://librechat.ai/tos' |
| 20 | + openNewTab: true |
| 21 | + modalAcceptance: true |
| 22 | + modalTitle: "Terms of Service for LibreChat" |
| 23 | + modalContent: | |
| 24 | + # Terms and Conditions for LibreChat |
| 25 | +
|
| 26 | + *Effective Date: February 18, 2024* |
| 27 | +
|
| 28 | + Welcome to LibreChat, the informational website for the open-source AI chat platform, available at https://librechat.ai. These Terms of Service ("Terms") govern your use of our website and the services we offer. By accessing or using the Website, you agree to be bound by these Terms and our Privacy Policy, accessible at https://librechat.ai//privacy. |
| 29 | +
|
| 30 | + ## 1. Ownership |
| 31 | +
|
| 32 | + Upon purchasing a package from LibreChat, you are granted the right to download and use the code for accessing an admin panel for LibreChat. While you own the downloaded code, you are expressly prohibited from reselling, redistributing, or otherwise transferring the code to third parties without explicit permission from LibreChat. |
| 33 | +
|
| 34 | + ## 2. User Data |
| 35 | +
|
| 36 | + We collect personal data, such as your name, email address, and payment information, as described in our Privacy Policy. This information is collected to provide and improve our services, process transactions, and communicate with you. |
| 37 | +
|
| 38 | + ## 3. Non-Personal Data Collection |
| 39 | +
|
| 40 | + The Website uses cookies to enhance user experience, analyze site usage, and facilitate certain functionalities. By using the Website, you consent to the use of cookies in accordance with our Privacy Policy. |
| 41 | +
|
| 42 | + ## 4. Use of the Website |
| 43 | +
|
| 44 | + You agree to use the Website only for lawful purposes and in a manner that does not infringe the rights of, restrict, or inhibit anyone else's use and enjoyment of the Website. Prohibited behavior includes harassing or causing distress or inconvenience to any person, transmitting obscene or offensive content, or disrupting the normal flow of dialogue within the Website. |
| 45 | +
|
| 46 | + ## 5. Governing Law |
| 47 | +
|
| 48 | + These Terms shall be governed by and construed in accordance with the laws of the United States, without giving effect to any principles of conflicts of law. |
| 49 | +
|
| 50 | + ## 6. Changes to the Terms |
| 51 | +
|
| 52 | + We reserve the right to modify these Terms at any time. We will notify users of any changes by email. Your continued use of the Website after such changes have been notified will constitute your consent to such changes. |
| 53 | +
|
| 54 | + ## 7. Contact Information |
| 55 | +
|
| 56 | + If you have any questions about these Terms, please contact us at [email protected]. |
| 57 | +
|
| 58 | + By using the Website, you acknowledge that you have read these Terms of Service and agree to be bound by them. |
| 59 | +
|
| 60 | + endpointsMenu: true |
| 61 | + modelSelect: false |
| 62 | + parameters: true |
| 63 | + sidePanel: true |
| 64 | + presets: false |
| 65 | + prompts: true |
| 66 | + bookmarks: true |
| 67 | + multiConvo: true |
| 68 | + agents: true |
| 69 | + |
| 70 | +# Example Registration Object Structure (optional) |
| 71 | +registration: |
| 72 | + socialLogins: ['github', 'google', 'discord', 'openid', 'facebook'] |
| 73 | + |
| 74 | +# Example Actions Object Structure |
| 75 | +actions: |
| 76 | + allowedDomains: |
| 77 | + - "swapi.dev" |
| 78 | + - "librechat.ai" |
| 79 | + - "google.com" |
| 80 | + |
| 81 | +# Definition of custom endpoints |
| 82 | +endpoints: |
| 83 | + custom: |
| 84 | + - name: "LiteLLM" |
| 85 | + apiKey: "${LITELLM_API_KEY}" |
| 86 | + baseURL: "${LITELLM_URL}" |
| 87 | + # if using LiteLLM example in docker-compose.override.yml.example, use "http://litellm:8000/v1" |
| 88 | + models: |
| 89 | + default: ["llama3.1"] |
| 90 | + fetch: true |
| 91 | + titleConvo: true |
| 92 | + titleModel: "current_model" |
| 93 | + summaryModel: "current_model" |
| 94 | + summarize: false |
| 95 | + forcePrompt: false |
| 96 | + agents: |
| 97 | + recursionLimit: 50 |
| 98 | + disableBuilder: false |
0 commit comments