Files
librechat.ai/content/changelog/config_v1.3.5.mdx
Danny Avila 39d2de754d v0.8.3-rc2 (#522)
*  v0.8.3-rc2

- Added new `document_parser` OCR strategy for local text extraction from various document formats.
- Introduced `thinkingLevel` parameter for Gemini 3+ models to control thinking effort.
- Added `reasoning_effort` parameter for Bedrock models to configure reasoning capabilities.
- Enabled document uploads for Bedrock endpoints.
- Updated default model lists to include new Gemini models.
- Changed date template variable format for improved readability.
- Updated OpenRouter reasoning configuration to align with API changes.
- Bumped configuration version to 1.3.5 across multiple documentation files.

* docs: enhance `document_parser` functionality and update OCR configuration details

- Updated the `document_parser` to run automatically for agent file uploads without requiring an `ocr` configuration, providing seamless text extraction from supported document types.
- Added fallback logic for the `document_parser` when a configured OCR strategy fails, ensuring text extraction remains effective.
- Expanded documentation to clarify the automatic operation of the `document_parser` and its limitations regarding image-based documents.

* chore: update changelog for v0.8.3-rc2

- Added new features including credential variables for DB-sourced MCP servers, updates for the `gemini-3.1-flash-lite-preview` window and pricing, and the introduction of gpt-5.3 context window and pricing.
- Enhanced agent editor functionality by allowing duplication of agents.
- Implemented fixes for OIDC logout, post-auth navigation, and URL query parameter preservation.
- Updated various dependencies and improved internationalization with new translations.

* docs: add credential variables support for UI-created MCP servers

- Introduced a new section detailing how users can provide their own API keys when adding MCP servers through the UI.
- Explained the creation of `customUserVars` for user-provided API keys and the security measures in place to prevent unauthorized access to sensitive data.
- Updated documentation to enhance clarity on the configuration process for MCP servers.

* chore: update changelog for v0.8.3-rc2

- Added new features including expanded toolkit definitions for child tools in event-driven mode and consistent Mermaid theming for inline and artifact renderers.
- Updated the Agent Tool with new SVG assets for improved visual representation.

* chore: update changelog for v1.3.5

- Updated release date to 2026-03-04.
- Adjusted date template variable format to reflect the new date and include named weekdays.
- Updated OpenRouter reasoning configuration to align with API changes.
2026-03-04 12:35:45 -05:00

37 lines
1.9 KiB
Plaintext

---
date: 2026-03-04
title: ⚙️ Config v1.3.5
version: "1.3.5"
---
- Added `document_parser` OCR strategy for local text extraction
- Extracts text from PDF, DOCX, XLS/XLSX, and OpenDocument files without external OCR services
- Uses `pdfjs-dist`, `mammoth`, and `SheetJS` locally — no API key needed
- Runs automatically for agent file uploads even without any `ocr` configuration, and as a fallback when a configured OCR strategy fails
- Can also be set explicitly via `ocr.strategy: "document_parser"` in your `librechat.yaml`
- See [OCR Configuration](/docs/configuration/librechat_yaml/object_structure/ocr) for details
- Added `thinkingLevel` parameter for Gemini 3+ models
- Controls the thinking effort level: `"minimal"`, `"low"`, `"medium"`, or `"high"`
- Exposed as a slider in the Google endpoint settings UI
- Applies to Gemini 3+ models only (Gemini 2.5 models continue to use `thinkingBudget`)
- Added `reasoning_effort` parameter for Bedrock models
- Configures reasoning effort for supported Bedrock models (ZAI, MoonshotAI)
- Options: `"low"`, `"medium"`, `"high"`
- Exposed as a slider in Bedrock endpoint settings UI
- See [AWS Bedrock Configuration](/docs/configuration/librechat_yaml/object_structure/aws_bedrock) for details
- Added Bedrock document upload support
- Users can now upload documents (PDF, DOCX, etc.) when using Bedrock endpoints
- Updated default model lists
- Added `gemini-3.1-pro-preview`, `gemini-3.1-pro-preview-customtools`, `gemini-3-pro-preview`, and `gemini-3-flash-preview` to Google default models
- Changed date template variable format
- `{{current_date}}` now uses named weekday (e.g., `2026-03-04 (Monday)`) instead of numeric index
- `{{current_datetime}}` now includes timezone offset (e.g., `2026-03-04 14:30:00 -05:00 (Monday)`)
- Updated OpenRouter reasoning configuration
- Reasoning parameters are now sent as a unified `reasoning` object to match OpenRouter's updated API