docs: Add COHERE_API_URL environment variable documentation#408
Closed
busla wants to merge 3 commits intoLibreChat-AI:mainfrom
Closed
docs: Add COHERE_API_URL environment variable documentation#408busla wants to merge 3 commits intoLibreChat-AI:mainfrom
busla wants to merge 3 commits intoLibreChat-AI:mainfrom
Conversation
fix: added Cognito nonce docs
|
@busla is attempting to deploy a commit to the LibreChat's projects Team on Vercel. A member of the Team first needs to authorize it. |
88387e7 to
a157850
Compare
Add documentation for the new COHERE_API_URL environment variable that enables custom Cohere API endpoint configuration for web search reranking. Changes: - Add COHERE_API_URL to .env documentation with usage examples - Update web search feature documentation with custom endpoint instructions - Add cohereApiUrl configuration option to web search YAML documentation - Include LiteLLM proxy and custom endpoint examples This complements the main LibreChat PR that implements COHERE_API_URL support for custom Cohere endpoints in web search functionality. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
a157850 to
0643885
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds comprehensive documentation for the new
COHERE_API_URLenvironment variable that enables custom Cohere API endpoint configuration for web search reranking functionality.This documentation update complements the main LibreChat implementation PR: danny-avila/LibreChat#9544
Documentation Changes
1. Environment Variables Documentation (
dotenv.mdx)COHERE_API_URLto the Web Search environment variables table2. Web Search Feature Documentation (
web_search.mdx)COHERE_API_URLto the Quick Start environment variables sectionCOHERE_API_URL=http://litellm:8000/v1COHERE_API_URL=https://your-custom-endpoint.com/v13. YAML Configuration Documentation (
web_search.mdx)cohereApiUrlconfiguration option to the web search YAML examplecohereApiUrlparameterKey Features Documented
✅ Environment Variable Support:
COHERE_API_URLfor custom Cohere endpoints✅ LiteLLM Integration: Specific examples for LiteLLM proxy deployments
✅ Enterprise Deployments: Custom endpoint configuration for enterprise setups
✅ Backwards Compatibility: Clear explanation that it's optional with sensible defaults
✅ Multiple Deployment Scenarios: Docker, Kubernetes, and custom proxy examples
Usage Examples Added
Benefits
Files Modified
pages/docs/configuration/dotenv.mdx- Environment variables referencepages/docs/features/web_search.mdx- Feature documentation and setup guidepages/docs/configuration/librechat_yaml/object_structure/web_search.mdx- YAML configuration referenceThis documentation ensures users have comprehensive guidance for implementing custom Cohere endpoints in their LibreChat deployments, particularly for LiteLLM proxy integrations and enterprise environments.
🤖 Generated with Claude Code