unique_orchestrator 1.5.0__tar.gz → 1.5.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,12 @@ 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.5.1] - 2025-10-17
9
+ - revert behavior of unique ai upload and chat to
10
+ 1. Add upload and chat tool to forced tools if there are tool choices
11
+ 2. Simply force it if there are no tool choices.
12
+ 3. Tool not available when no uploaded documents
13
+
8
14
  ## [1.5.0] - 2025-10-16
9
15
  - Make code interpreter configurable through spaces 2.0.
10
16
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_orchestrator
3
- Version: 1.5.0
3
+ Version: 1.5.1
4
4
  Summary:
5
5
  License: Proprietary
6
6
  Author: Andreas Hauri
@@ -33,6 +33,12 @@ 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.5.1] - 2025-10-17
37
+ - revert behavior of unique ai upload and chat to
38
+ 1. Add upload and chat tool to forced tools if there are tool choices
39
+ 2. Simply force it if there are no tool choices.
40
+ 3. Tool not available when no uploaded documents
41
+
36
42
  ## [1.5.0] - 2025-10-16
37
43
  - Make code interpreter configurable through spaces 2.0.
38
44
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "unique_orchestrator"
3
- version = "1.5.0"
3
+ version = "1.5.1"
4
4
  description = ""
5
5
  authors = ["Andreas Hauri <andreas.hauri@unique.ai>"]
6
6
  readme = ["README.md", "CHANGELOG.md"]
@@ -375,17 +375,24 @@ def _build_completions(
375
375
  common_components: _CommonComponents,
376
376
  debug_info_manager: DebugInfoManager,
377
377
  ) -> UniqueAI:
378
- if len(common_components.uploaded_documents) > 0:
378
+ # Uploaded content behavior is always to force uploaded search tool:
379
+ # 1. Add it to forced tools if there are tool choices.
380
+ # 2. Simply force it if there are no tool choices.
381
+ # 3. Not available if not uploaded documents.
382
+ UPLOADED_DOCUMENTS = len(common_components.uploaded_documents) > 0
383
+ TOOL_CHOICES = len(event.payload.tool_choices) > 0
384
+ if UPLOADED_DOCUMENTS:
379
385
  logger.info(
380
386
  f"Adding UploadedSearchTool with {len(common_components.uploaded_documents)} documents"
381
387
  )
382
- config.space.tools.append(
388
+ common_components.tool_manager_config.tools.append(
383
389
  ToolBuildConfig(
384
390
  name=UploadedSearchTool.name,
385
391
  display_name=UploadedSearchTool.name,
386
392
  configuration=UploadedSearchConfig(),
387
- ),
393
+ )
388
394
  )
395
+ if TOOL_CHOICES and UPLOADED_DOCUMENTS:
389
396
  event.payload.tool_choices.append(str(UploadedSearchTool.name))
390
397
 
391
398
  tool_manager = ToolManager(
@@ -396,6 +403,8 @@ def _build_completions(
396
403
  mcp_manager=common_components.mcp_manager,
397
404
  a2a_manager=common_components.a2a_manager,
398
405
  )
406
+ if not TOOL_CHOICES and UPLOADED_DOCUMENTS:
407
+ tool_manager.add_forced_tool(UploadedSearchTool.name)
399
408
 
400
409
  postprocessor_manager = PostprocessorManager(
401
410
  logger=logger,