unique_orchestrator 1.2.1__tar.gz → 1.2.3__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.
@@ -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.2.3] - 2025-10-13
9
+ - Fix bug where follow-up questions were being generated even if the number of questions is set to 0 in the config.
10
+
11
+ ## [1.2.2] - 2025-10-09
12
+ - update loading path of `DEFAULT_GPT_4o` from `unique_toolkit`
13
+
8
14
  ## [1.2.1] - 2025-10-07
9
15
  - upgrade to deep research 3.0.0
10
16
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_orchestrator
3
- Version: 1.2.1
3
+ Version: 1.2.3
4
4
  Summary:
5
5
  License: Proprietary
6
6
  Author: Andreas Hauri
@@ -15,12 +15,12 @@ Requires-Dist: pytest (>=8.4.1,<9.0.0)
15
15
  Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
16
16
  Requires-Dist: typing-extensions (>=4.9.0,<5.0.0)
17
17
  Requires-Dist: unique-deep-research (>=3.0.0,<4.0.0)
18
- Requires-Dist: unique-follow-up-questions (>=1.0.0,<2.0.0)
19
- Requires-Dist: unique-internal-search (>=1.0.0,<2.0.0)
18
+ Requires-Dist: unique-follow-up-questions (>=1.1.2,<2.0.0)
19
+ Requires-Dist: unique-internal-search (>=1.0.1,<2.0.0)
20
20
  Requires-Dist: unique-sdk (>=0.10.24,<0.11.0)
21
- Requires-Dist: unique-stock-ticker (>=1.0.0,<2.0.0)
22
- Requires-Dist: unique-toolkit (>=1.11.0,<2.0.0)
23
- Requires-Dist: unique-web-search (>=1.0.0,<2.0.0)
21
+ Requires-Dist: unique-stock-ticker (>=1.0.2,<2.0.0)
22
+ Requires-Dist: unique-toolkit (>=1.14.5,<2.0.0)
23
+ Requires-Dist: unique-web-search (>=1.3.1,<2.0.0)
24
24
  Description-Content-Type: text/markdown
25
25
 
26
26
  # Unique Orchestrator
@@ -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.2.3] - 2025-10-13
37
+ - Fix bug where follow-up questions were being generated even if the number of questions is set to 0 in the config.
38
+
39
+ ## [1.2.2] - 2025-10-09
40
+ - update loading path of `DEFAULT_GPT_4o` from `unique_toolkit`
41
+
36
42
  ## [1.2.1] - 2025-10-07
37
43
  - upgrade to deep research 3.0.0
38
44
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "unique_orchestrator"
3
- version = "1.2.1"
3
+ version = "1.2.3"
4
4
  description = ""
5
5
  authors = ["Andreas Hauri <andreas.hauri@unique.ai>"]
6
6
  readme = ["README.md", "CHANGELOG.md"]
@@ -15,12 +15,12 @@ python-dotenv = "^1.0.1"
15
15
  pytest = "^8.4.1"
16
16
  unique-sdk = "^0.10.24"
17
17
 
18
- unique-toolkit = "^1.11.0"
19
- unique-stock-ticker = "^1.0.0"
20
- unique-follow-up-questions = "^1.0.0"
21
- unique-internal-search = "^1.0.0"
18
+ unique-toolkit = "^1.14.5"
19
+ unique-stock-ticker = "^1.0.2"
20
+ unique-follow-up-questions = "^1.1.2"
21
+ unique-internal-search = "^1.0.1"
22
22
  unique-deep-research = "^3.0.0"
23
- unique-web-search = "^1.0.0"
23
+ unique-web-search = "^1.3.1"
24
24
 
25
25
 
26
26
  [tool.poetry.group.dev.dependencies]
@@ -9,7 +9,6 @@ from unique_follow_up_questions.config import FollowUpQuestionsConfig
9
9
  from unique_internal_search.config import InternalSearchConfig
10
10
  from unique_internal_search.service import InternalSearchTool
11
11
  from unique_stock_ticker.config import StockTickerConfig
12
- from unique_toolkit._common.default_language_model import DEFAULT_GPT_4o
13
12
  from unique_toolkit._common.validators import (
14
13
  LMI,
15
14
  ClipInt,
@@ -29,6 +28,7 @@ from unique_toolkit.agentic.tools.a2a import (
29
28
  from unique_toolkit.agentic.tools.a2a.evaluation import SubAgentEvaluationServiceConfig
30
29
  from unique_toolkit.agentic.tools.config import get_configuration_dict
31
30
  from unique_toolkit.agentic.tools.tool import ToolBuildConfig
31
+ from unique_toolkit.language_model.default_language_model import DEFAULT_GPT_4o
32
32
  from unique_web_search.config import WebSearchConfig
33
33
  from unique_web_search.service import WebSearchTool
34
34
 
@@ -155,7 +155,10 @@ def build_unique_ai(
155
155
  )
156
156
  )
157
157
 
158
- if config.agent.services.follow_up_questions_config:
158
+ if (
159
+ config.agent.services.follow_up_questions_config
160
+ and config.agent.services.follow_up_questions_config.number_of_questions > 0
161
+ ):
159
162
  postprocessor_manager.add_postprocessor(
160
163
  FollowUpPostprocessor(
161
164
  logger=logger,