unique_orchestrator 1.6.0__tar.gz → 1.6.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of unique_orchestrator might be problematic. Click here for more details.

@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.6.1] - 2025-10-28
9
+ - Removing unused experimental config `full_sources_serialize_dump` in `history_manager`
10
+
8
11
  ## [1.6.0] - 2025-10-27
9
12
  - Add temporary config option `sleep_time_before_update` to avoid rendering issues with sub agent responses`
10
13
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_orchestrator
3
- Version: 1.6.0
3
+ Version: 1.6.1
4
4
  Summary:
5
5
  License: Proprietary
6
6
  Author: Andreas Hauri
@@ -33,6 +33,9 @@ All notable changes to this project will be documented in this file.
33
33
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
34
34
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
35
35
 
36
+ ## [1.6.1] - 2025-10-28
37
+ - Removing unused experimental config `full_sources_serialize_dump` in `history_manager`
38
+
36
39
  ## [1.6.0] - 2025-10-27
37
40
  - Add temporary config option `sleep_time_before_update` to avoid rendering issues with sub agent responses`
38
41
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "unique_orchestrator"
3
- version = "1.6.0"
3
+ version = "1.6.1"
4
4
  description = ""
5
5
  authors = ["Andreas Hauri <andreas.hauri@unique.ai>"]
6
6
  readme = ["README.md", "CHANGELOG.md"]
@@ -141,9 +141,7 @@ def _build_common(
141
141
  reference_manager = ReferenceManager()
142
142
 
143
143
  history_manager_config = HistoryManagerConfig(
144
- experimental_features=history_manager_module.ExperimentalFeatures(
145
- full_sources_serialize_dump=False,
146
- ),
144
+ experimental_features=history_manager_module.ExperimentalFeatures(),
147
145
  percent_of_max_tokens_for_history=config.agent.input_token_distribution.percent_for_history,
148
146
  language_model=config.space.language_model,
149
147
  uploaded_content_config=config.agent.services.uploaded_content_config,