📚 docs: Update Config to v1.2.8 and add Azure Mistral OCR Support (#329)

* 📚 docs: Update Config Version to v1.2.8 and add Azure Mistral OCR support

- Updated version numbers in multiple configuration files to reflect the new version 1.2.8.
- Introduced a new `azure_mistral_ocr` strategy option for OCR configuration, enabling the use of Mistral OCR models deployed on Azure AI Foundry.
- Enhanced documentation for OCR configuration to include details on Azure deployment and its requirements.
- Added changelog entries for version 1.2.8, summarizing the new features and updates.

* 📚 docs: Enhance changelog for v1.2.8 with MCP Servers updates

- Added `serverInstructions` to MCP Servers object structure, detailing its role in agent context.
- Introduced new dynamic user field placeholders for enhanced multi-user support, including `{{LIBRECHAT_USER_ID}}` and `{{LIBRECHAT_USER_*}}`.
- Updated documentation links for better navigation and clarity on MCP Servers object structure.

* 📚 docs: Update changelog and OCR documentation for v1.2.8

- Enhanced the changelog for v1.2.8 with additional details on user field placeholders in the MCP Servers object structure.
- Improved OCR documentation by linking strategies to their respective sections for better clarity and navigation.
- Noted the future implementation status of the custom OCR service in the documentation.
This commit is contained in:
Danny Avila
2025-06-13 17:13:57 -04:00
committed by GitHub
parent 8608b05547
commit 460241640e
15 changed files with 98 additions and 21 deletions

View File

@@ -0,0 +1,13 @@
- Added `azure_mistral_ocr` strategy option for OCR configuration
- Enables use of Mistral OCR models deployed on Azure AI Foundry
- Supports Azure-specific deployment configurations with custom endpoints
- Requires Azure deployment name to be specified in `mistralModel` field
- Compatible with Mistral OCR 2503 model available on Azure AI Foundry
- See [OCR Configuration](/docs/configuration/librechat_yaml/object_structure/ocr) for details
- Added `serverInstructions` to MCP Servers object structure:
- Controls whether server instructions are included in agent context when using MCP Server tools
- See: [MCP Servers Object Structure](/docs/configuration/librechat_yaml/object_structure/mcp_servers#serverinstructions)
- Added additional user field placeholders to [MCP Servers Object Structure](/docs/configuration/librechat_yaml/object_structure/mcp_servers):
- `{{LIBRECHAT_USER_ID}}`: Will be replaced with the current user's ID, enabling multi-user support.
- `{{LIBRECHAT_USER_*}}`: Dynamic user field placeholders. Replace `*` with the UPPERCASE version of any allowed field.
- See: **[`headers`](/docs/configuration/librechat_yaml/object_structure/mcp_servers#headers)** and **[`url`](/docs/configuration/librechat_yaml/object_structure/mcp_servers#url)** fields, which both support these placeholders.