unique_orchestrator 1.7.2__tar.gz → 1.7.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.
Potentially problematic release.
This version of unique_orchestrator might be problematic. Click here for more details.
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/CHANGELOG.md +3 -0
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/PKG-INFO +5 -2
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/pyproject.toml +2 -2
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/unique_orchestrator/unique_ai.py +1 -3
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/LICENSE +0 -0
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/README.md +0 -0
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/unique_orchestrator/config.py +0 -0
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/unique_orchestrator/prompts/generic_reference_prompt.jinja2 +0 -0
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/unique_orchestrator/prompts/system_prompt.jinja2 +0 -0
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/unique_orchestrator/prompts/user_message_prompt.jinja2 +0 -0
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/unique_orchestrator/tests/test_unique_ai_reference_order.py +0 -0
- {unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/unique_orchestrator/unique_ai_builder.py +0 -0
|
@@ -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.7.3] - 2025-11-03
|
|
9
|
+
- Fixed an issue where new assistant messages were not properly generated during streaming outputs with tool calls; the orchestrator now correctly creates messages via `_create_new_assistant_message_if_loop_response_contains_content` when loop_response includes text and tool invocations.
|
|
10
|
+
|
|
8
11
|
## [1.7.2] - 2025-11-03
|
|
9
12
|
- Add Swot tool to the orchestrator
|
|
10
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: unique_orchestrator
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.3
|
|
4
4
|
Summary:
|
|
5
5
|
License: Proprietary
|
|
6
6
|
Author: Andreas Hauri
|
|
@@ -20,7 +20,7 @@ Requires-Dist: unique-internal-search (>=1.0.1,<2.0.0)
|
|
|
20
20
|
Requires-Dist: unique-sdk (>=0.10.34,<0.11.0)
|
|
21
21
|
Requires-Dist: unique-stock-ticker (>=1.0.2,<2.0.0)
|
|
22
22
|
Requires-Dist: unique-swot (>=0.1.0,<0.2.0)
|
|
23
|
-
Requires-Dist: unique-toolkit (>=1.22.
|
|
23
|
+
Requires-Dist: unique-toolkit (>=1.22.2,<2.0.0)
|
|
24
24
|
Requires-Dist: unique-web-search (>=1.3.1,<2.0.0)
|
|
25
25
|
Description-Content-Type: text/markdown
|
|
26
26
|
|
|
@@ -34,6 +34,9 @@ All notable changes to this project will be documented in this file.
|
|
|
34
34
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
35
35
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
36
36
|
|
|
37
|
+
## [1.7.3] - 2025-11-03
|
|
38
|
+
- Fixed an issue where new assistant messages were not properly generated during streaming outputs with tool calls; the orchestrator now correctly creates messages via `_create_new_assistant_message_if_loop_response_contains_content` when loop_response includes text and tool invocations.
|
|
39
|
+
|
|
37
40
|
## [1.7.2] - 2025-11-03
|
|
38
41
|
- Add Swot tool to the orchestrator
|
|
39
42
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "unique_orchestrator"
|
|
3
|
-
version = "1.7.
|
|
3
|
+
version = "1.7.3"
|
|
4
4
|
description = ""
|
|
5
5
|
authors = ["Andreas Hauri <andreas.hauri@unique.ai>"]
|
|
6
6
|
readme = ["README.md", "CHANGELOG.md"]
|
|
@@ -15,7 +15,7 @@ python-dotenv = "^1.0.1"
|
|
|
15
15
|
pytest = "^8.4.1"
|
|
16
16
|
unique-sdk = "^0.10.34"
|
|
17
17
|
|
|
18
|
-
unique-toolkit = "^1.22.
|
|
18
|
+
unique-toolkit = "^1.22.2"
|
|
19
19
|
unique-stock-ticker = "^1.0.2"
|
|
20
20
|
unique-follow-up-questions = "^1.1.2"
|
|
21
21
|
unique-internal-search = "^1.0.1"
|
|
@@ -135,9 +135,6 @@ class UniqueAI:
|
|
|
135
135
|
self.start_text = self._thinking_manager.update_start_text(
|
|
136
136
|
self.start_text, loop_response
|
|
137
137
|
)
|
|
138
|
-
await self._create_new_assistant_message_if_loop_response_contains_content(
|
|
139
|
-
loop_response
|
|
140
|
-
)
|
|
141
138
|
|
|
142
139
|
# Only set completed_at if no tool took control. Tools that take control will set the message state to completed themselves.
|
|
143
140
|
await self._chat_service.modify_assistant_message_async(
|
|
@@ -231,6 +228,7 @@ class UniqueAI:
|
|
|
231
228
|
self._logger.debug(
|
|
232
229
|
"Tools were called we process them and do not exit the loop"
|
|
233
230
|
)
|
|
231
|
+
await self._create_new_assistant_message_if_loop_response_contains_content(loop_response)
|
|
234
232
|
|
|
235
233
|
return await self._handle_tool_calls(loop_response)
|
|
236
234
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{unique_orchestrator-1.7.2 → unique_orchestrator-1.7.3}/unique_orchestrator/unique_ai_builder.py
RENAMED
|
File without changes
|