R2r

Latest version: v3.5.9

Safety actively analyzes 723976 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 12

3.4.2

Fixes a number of bugs around advanced ingestion settings, removes poetry from project in favor of UV, and fixes issues around Lark and Lark-Parser being installed that caused breakage on certain Linux Distributions.

What's Changed
* fix eos problem by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1950

3.4.0

Major Highlights:
1. Python SDK Modernization
- Switched from dictionary-based access to object-oriented syntax
- Example: `client.documents.list.results[0].id` replaces `client.documents.list['results'][0][id]`

2. Simplified Server Start Process
- Removed CLI interface
- New commands to start server: `python -m r2r.serve` or `r2r-serve`

3. Improved Configuration FIles
- Removed scattered model definitions, condensed to `fast_llm`, `quality_llm`, `vlm`, and `audio_lm`.
- Decluttered and introduced `agent_static_prompt` and `agent_dynamic_prompt` templates

Other Notable Changes:
- Enhanced error handling and observability
- Improved ingestion error reporting
- Better handling of invalid JSON files
- Added Sentry support

- Agent and Tool Improvements
- Added multi-search tool functionality
- Implemented custom Gemini agent
- Added Anthropic completion provider
- Created advanced Claude reasoning agent

- Infrastructure Updates
- Added API key support to JS SDK
- Improved staging deployment process
- Enhanced configuration for retrieval vs ingestion embeddings

The release also includes numerous bug fixes, code cleanup efforts, and minor improvements to various components of the system.

New Contributors
* cristiancmoises made their first contribution in https://github.com/SciPhi-AI/R2R/pull/1882

**Full Changelog**: https://github.com/SciPhi-AI/R2R/compare/v3.3.30...v3.4.0

3.3.30

_Released on January 23, 2025_

We’re excited to announce the newest release of R2R: **v3.3.30**! This version contains major enhancements to the agent’s capabilities, new Docker Swarm support, additional configuration options for security and extended model support, and numerous other improvements and fixes. Below is an overview of the most noteworthy changes.

---

🚀 Major Agent Upgrades

Date & Knowledge Base Awareness
- **Date awareness**: Agents now have improved context about current dates and times, enabling more precise and contextually correct responses.
- **Knowledge base insights**: Agents can query all available documents, their summaries, collections, and sizes. This means more intelligent retrieval and referencing of ingested data, paving the way for advanced summarization and context understanding.

Enhanced Tooling
- **New `content` tool**: Fetch the raw content of any document directly, enabling single-document summarizations and specialized analysis without a broad search.
- **`web_search` tool enabled by default**: Agents can call the web search tool to gather external information. This is configured out-of-the-box for the Rowland environment and can be toggled as needed.
- **`local_search` improvements**: Continues to be available for local knowledge retrieval, now with refined logic to ensure faster and more accurate searches.

Improved Agent Configuration
- **Refactored agent settings**: `agent_config` replaces the older `self.config.agent` usage, streamlining how agent behavior is controlled and removing extraneous parameters.
- **Cleaner messaging flows**: Internally, message-handling logic was overhauled for greater consistency, resulting in fewer edge cases and a more robust conversation flow.

---

🛠 New Features & Enhancements

Docker Swarm Support
- **Horizontal scaling**: R2R can now be deployed via Docker Swarm for easier clustering in distributed environments.
- **Updated Compose files**: `compose.full.swarm.yaml`, `compose.full.yaml`, and `compose.yaml` include references for seamless Docker Swarm service orchestration.

XAI / GROK Integration
- **New `XAI_API_KEY` environment variable**: Allows use of advanced XAI/GROK models.
- **Example Compose updates**: `XAI_API_KEY` is now present in `.env.example` and Docker Compose configurations, so you can pass authentication for these models automatically.

JWT Auth Provider
- **JWT-based authentication**: Added as a new auth provider, enabling a more secure and standardized authentication flow across R2R setups.
- **Integration**: Configure your JWT settings in the R2R config files to protect endpoints with token-based security.

Knowledge Graph & Document Processing
- **kg_clustering & kg_community_summary fixes**: Corrected indexing and `num_communities` handling, and improved the functions’ return structures for better downstream usage.
- **Hatchet fallback ingestion**: Introduced a fallback ingestion path to ensure documents are successfully processed even if the primary method encounters errors.
- **Empty page allowance**: The PDF parser no longer raises an error for empty pages, making ingestion more robust across diverse document formats.
- **Automatic `total_tokens` column**: R2R now automatically adds a `total_tokens` column to the `documents` table if missing, avoiding migration blockers and reducing friction for existing installations.

Configuration Examples & Cleanup
- **Combined Example TOML**: All possible configuration parameters are now grouped into a single example `r2r.toml`, making it simpler to discover and enable new features.
- **Refactored agent & retrieval logic**: Extraction of common RAG agent patterns into a dedicated `RAGAgentMixin`. Simplifies how local/web searches and content lookups are handled in agent code.
- **Pre-commit linting**: Ensures consistent code style and quality, lowering the bar for new contributors to keep the repository clean.

---

🐛 Bug Fixes & Stability

- **Agent runtime spec corrections**: Addressed edge cases where the agent would misinterpret or fail to execute runtime specifications.
- **Graph extraction patches**: Improved how graph data is extracted and utilized, reducing errors in advanced knowledge graph operations.
- **RAG streaming resilience**: Re-introduced and enhanced streaming capabilities for RAG-based queries, fixing stability issues in streaming responses.
- **Build cluster logic**: Patched a bug in the cluster-building logic to ensure robust knowledge graph creation even in complex document sets.

---

⚙️ Developer Experience

- **Dockerfile for Unstructured**: Updated with the latest NLTK data changes. Streamlines building and running the unstructured text processing environment by removing outdated Dockerfiles and consolidating dependencies.
- **Code refactoring & cleaning**: Removal of deprecated pipelines, improved logging messages, and better error handling throughout the codebase.
- **Testing improvements**: Extended and refactored tests, including coverage for new agent tools, collection ID filters, and database migrations.

---

👥 New Contributors
- **[[mstickel](https://github.com/mstickel)](https://github.com/mstickel)** contributed JWT auth provider in [[#1833](https://github.com/SciPhi-AI/R2R/pull/1833)](https://github.com/SciPhi-AI/R2R/pull/1833).
- **[[ArturTanona](https://github.com/ArturTanona)](https://github.com/ArturTanona)** contributed XAI API Key support in [[#1865](https://github.com/SciPhi-AI/R2R/pull/1865)](https://github.com/SciPhi-AI/R2R/pull/1865).

Thank you for helping make R2R even better!

---

Getting Started & Upgrading

1. **Pull the latest docker images** or update your code from the [[R2R GitHub repository](https://github.com/SciPhi-AI/R2R)](https://github.com/SciPhi-AI/R2R).
2. **Set up new environment variables** (`XAI_API_KEY`) if you intend to use XAI/GROK model features.
3. **Run migrations** to ensure the new `total_tokens` column is present in the `documents` table. R2R automatically attempts to add this column if it’s missing, with no downtime or data loss.
4. **Review your `r2r.toml`** (or equivalent config) for updated agent and RAG entries, especially if you want to enable or disable new search tools at runtime.

---

Full Changelog

For a comprehensive list of changes, including commits and pull requests, see the official [[GitHub comparison between v3.3.29 and v3.3.30](https://github.com/SciPhi-AI/R2R/compare/v3.3.29...v3.3.30)](https://github.com/SciPhi-AI/R2R/compare/v3.3.29...v3.3.30).

---

We appreciate your support and feedback. If you have questions or run into any issues, please open an issue on [[GitHub](https://github.com/SciPhi-AI/R2R/issues)](https://github.com/SciPhi-AI/R2R/issues) or reach out on our community forum. Happy building!

3.3.29

Adds in contextual enrichment, which you can learn more about here: https://r2r-docs.sciphi.ai/documentation/contextual-enrichment

What's Changed
* Reintroduce contextual enrichment by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1832
* fix graph collection filtering by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1834
* fix sim. calc and return by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1835
* fix relationship filters by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1836
* Bump LiteLLM by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1837


**Full Changelog**: https://github.com/SciPhi-AI/R2R/compare/v3.3.28...v3.3.29

3.3.28

Introduces [deduplication](https://r2r-docs.sciphi.ai/documentation/deduplication), automatic extraction and deduplication, as well as a number of bug fixes.

What's Changed
* Feature/add auth callback by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1809
* Add await to ingestion by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1811
* Improve XML Sanitation by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1812
* Introduce LM Studio by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1813
* Bug fix: passing document id to chunks by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1815
* tweak graph permissions by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1817
* force overwrite of graphrag prompts by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1818
* tweak for prod fix by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1819
* Add 'processing' status to document extraction by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1821
* Feature/add auto extract by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1822
* Document Entity Deduplication by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1823
* Admin only for logs websocket by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1826
* Fix document count on collections by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1827
* Feature/fix default client add conversation title by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1830
* Disable automatic extraction and deduplication for local models by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1831


**Full Changelog**: https://github.com/SciPhi-AI/R2R/compare/3.3.27...v3.3.28

3.3.27

A number of bug fixes, introduction of more user management configurations, and refined graph processes to better support local LLMs.


What's Changed
* Feature/fix zerox ingestion by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1659
* Dev minor by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1665
* fix provider defaults issue by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1667
* fix retrieval by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1669
* Fix agent responses for conversation by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1668
* Fix serialization error for Collection UUID going into Hatchet workflow by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1670
* Feature/add document search back by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1672
* fix owner id references by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1673
* Patch/fix filtered deletion logic by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1677
* Add statement_cache_size parameter to allow connections to Supabase by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1676
* up by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1678
* 20,539% speed up in collections overview by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1680
* Nolan/collections migration by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1681
* up by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1679
* Feature/test graphs and indices by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1683
* up by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1684
* Feature/fix multi user search by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1686
* Add document summary to extraction process by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1682
* Nolan/collections summary by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1685
* Feature/clustering as a service by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1687
* Patch/rename to cluster as a service by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1688
* cleanup scale settings by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1689
* Feature/improve collection logic add regr tests by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1692
* merge in nolan + main by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1694
* up by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1695
* checkin limits implementation by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1696
* up by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1697
* delete test cruft by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1700
* up by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1701
* Feature/add systems test for limits by emrgnt-cmplxty in https://github.com/SciPhi-AI/R2R/pull/1703
* Implementing Missing R2R Parsers, Image Ingestion by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1702
* Regenerate lock by NolanTrem in https://github.com/SciPhi-AI/R2R/pull/1704

Page 3 of 12

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.