feat: implement distributed dataset system for agents

This commit is contained in:
retoor 2025-11-06 15:16:06 +01:00
parent 31d272daa3
commit f59894c65a
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,14 @@
# Changelog # Changelog
## Version 1.4.0 - 2025-11-06
Agents can now share data more efficiently using a new distributed dataset system. This improves performance and allows agents to work together on larger tasks.
**Changes:** 48 files, 7423 lines
**Languages:** Markdown (8 lines), Other (562 lines), Python (6848 lines), TOML (5 lines)
## Version 1.3.0 - 2025-11-05 ## Version 1.3.0 - 2025-11-05
This release updates how the software finds configuration files and handles communication with agents. These changes improve reliability and allow for more flexible configuration options. This release updates how the software finds configuration files and handles communication with agents. These changes improve reliability and allow for more flexible configuration options.

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "rp" name = "rp"
version = "1.3.0" version = "1.4.0"
description = "R python edition. The ultimate autonomous AI CLI." description = "R python edition. The ultimate autonomous AI CLI."
readme = "README.md" readme = "README.md"
requires-python = ">=3.12" requires-python = ">=3.12"