unique_orchestrator 1.11.1__py3-none-any.whl
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/config.py +401 -0
- unique_orchestrator/prompts/generic_reference_prompt.jinja2 +46 -0
- unique_orchestrator/prompts/system_prompt.jinja2 +166 -0
- unique_orchestrator/prompts/user_message_prompt.jinja2 +23 -0
- unique_orchestrator/tests/test_unique_ai_get_filtered_user_metadata.py +259 -0
- unique_orchestrator/tests/test_unique_ai_log_tool_calls.py +729 -0
- unique_orchestrator/tests/test_unique_ai_reference_order.py +134 -0
- unique_orchestrator/tests/test_unique_ai_update_debug_info_for_tool_control.py +339 -0
- unique_orchestrator/unique_ai.py +537 -0
- unique_orchestrator/unique_ai_builder.py +568 -0
- unique_orchestrator-1.11.1.dist-info/LICENSE +1 -0
- unique_orchestrator-1.11.1.dist-info/METADATA +199 -0
- unique_orchestrator-1.11.1.dist-info/RECORD +14 -0
- unique_orchestrator-1.11.1.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: unique_orchestrator
|
|
3
|
+
Version: 1.11.1
|
|
4
|
+
Summary:
|
|
5
|
+
License: Proprietary
|
|
6
|
+
Author: Andreas Hauri
|
|
7
|
+
Author-email: andreas.hauri@unique.ai
|
|
8
|
+
Requires-Python: >=3.12,<4.0
|
|
9
|
+
Classifier: License :: Other/Proprietary License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Requires-Dist: pydantic (>=2.8.2,<3.0.0)
|
|
13
|
+
Requires-Dist: pydantic-settings (>=2.10.1,<3.0.0)
|
|
14
|
+
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
|
15
|
+
Requires-Dist: typing-extensions (>=4.9.0,<5.0.0)
|
|
16
|
+
Requires-Dist: unique-deep-research (>=3.0.17,<4.0.0)
|
|
17
|
+
Requires-Dist: unique-follow-up-questions (>=1.1.2,<2.0.0)
|
|
18
|
+
Requires-Dist: unique-internal-search (>=1.2.8,<2.0.0)
|
|
19
|
+
Requires-Dist: unique-sdk (>=0.10.48,<0.11.0)
|
|
20
|
+
Requires-Dist: unique-stock-ticker (>=1.0.2,<2.0.0)
|
|
21
|
+
Requires-Dist: unique-swot (>=1.0.0,<2.0.0)
|
|
22
|
+
Requires-Dist: unique-toolkit (>=1.38.4,<2.0.0)
|
|
23
|
+
Requires-Dist: unique-web-search (>=1.6.0,<2.0.0)
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# Unique Orchestrator
|
|
27
|
+
|
|
28
|
+
Unique AI orchestrator agent to struct and direct subagents, tools and services
|
|
29
|
+
# Changelog
|
|
30
|
+
|
|
31
|
+
All notable changes to this project will be documented in this file.
|
|
32
|
+
|
|
33
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
34
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
35
|
+
|
|
36
|
+
## [1.11.1] - 2025-12-11
|
|
37
|
+
- Improving support for forced tool call for Qwen models
|
|
38
|
+
|
|
39
|
+
## [1.11.0] - 2025-12-11
|
|
40
|
+
- Add support for forced tool call for Qwen models
|
|
41
|
+
|
|
42
|
+
## [1.10.0] - 2025-12-08
|
|
43
|
+
- Upgrading swot tool
|
|
44
|
+
|
|
45
|
+
## [1.9.0] - 2025-12-05
|
|
46
|
+
- Add support for planning before every loop iteration
|
|
47
|
+
|
|
48
|
+
## [1.8.2] - 2025-12-04
|
|
49
|
+
- Fix logging tool calls when tool takes over control
|
|
50
|
+
|
|
51
|
+
## [1.8.1] - 2025-12-03
|
|
52
|
+
- Logging tool calls when tool takes over control
|
|
53
|
+
|
|
54
|
+
## [1.8.0] - 2025-12-02
|
|
55
|
+
- Add option to upload code interpreter generated files to the chat.
|
|
56
|
+
|
|
57
|
+
## [1.7.19] - 2025-12-01
|
|
58
|
+
- Systemprompt formatting update
|
|
59
|
+
|
|
60
|
+
## [1.7.18] - 2025-11-27
|
|
61
|
+
- Improvement of message log service to indicate number of tool calls per loop iteration
|
|
62
|
+
|
|
63
|
+
## [1.7.17] - 2025-11-27
|
|
64
|
+
- Fixed an issue where the orchestrator failed when the number of tool calls exceeded the maximum allowed as defined in the configuration.
|
|
65
|
+
- Increased default value of max parallel tool calls from 5 to 15
|
|
66
|
+
|
|
67
|
+
## [1.7.16] - 2025-11-26
|
|
68
|
+
- Removing log of Deep Research tool call while keeping messages generated within the Deep Research call
|
|
69
|
+
|
|
70
|
+
## [1.7.15] - 2025-11-24
|
|
71
|
+
- Streamlining message log service for listing tools and being compatible with SWOT and DeepSearch
|
|
72
|
+
|
|
73
|
+
## [1.7.14] - 2025-11-20
|
|
74
|
+
- Add message log service
|
|
75
|
+
|
|
76
|
+
## [1.7.13] - 2025-11-20
|
|
77
|
+
- Fix bug of handling properly uploaded files that are expired
|
|
78
|
+
|
|
79
|
+
## [1.7.12] - 2025-11-19
|
|
80
|
+
- Bump Swot tool
|
|
81
|
+
|
|
82
|
+
## [1.7.11] - 2025-11-17
|
|
83
|
+
- Fix bug where forcing a tool still sends builtin tools to the LLM when using the responses api.
|
|
84
|
+
|
|
85
|
+
## [1.7.10] - 2025-11-14
|
|
86
|
+
- Move pytest to dev dependencies
|
|
87
|
+
|
|
88
|
+
## [1.7.9] - 2025-11-12
|
|
89
|
+
- Fix bug where Responses API config was not properly validated
|
|
90
|
+
|
|
91
|
+
## [1.7.8] - 2025-11-11
|
|
92
|
+
- Better display of Responses API config in the UI
|
|
93
|
+
|
|
94
|
+
## [1.7.7] - 2025-11-10
|
|
95
|
+
- Remove direct azure client config from responses api config
|
|
96
|
+
- Organize Responses API config better
|
|
97
|
+
|
|
98
|
+
## [1.7.6] - 2025-11-05
|
|
99
|
+
- Update default system prompt (including user metadata section)
|
|
100
|
+
|
|
101
|
+
## [1.7.5] - 2025-11-05
|
|
102
|
+
- Adding functionality to include user metadata into user/system prompts of the orchestrator
|
|
103
|
+
|
|
104
|
+
## [1.7.4] - 2025-11-04
|
|
105
|
+
- Update and adapt to toolkit 1.23.0 (refactor sub agents implementation)
|
|
106
|
+
|
|
107
|
+
## [1.7.3] - 2025-11-03
|
|
108
|
+
- 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.
|
|
109
|
+
|
|
110
|
+
## [1.7.2] - 2025-11-03
|
|
111
|
+
- Add Swot tool to the orchestrator
|
|
112
|
+
|
|
113
|
+
## [1.7.1] - 2025-10-30
|
|
114
|
+
- Fixing that system format info is only appended to system prompt if tool is called
|
|
115
|
+
|
|
116
|
+
## [1.7.0] - 2025-10-30
|
|
117
|
+
- Add option to customize the display of tool progress statuses.
|
|
118
|
+
- Make follow-questions postprocessor run last to make sure the follow up questions are displayed last.
|
|
119
|
+
|
|
120
|
+
## [1.6.1] - 2025-10-28
|
|
121
|
+
- Removing unused experimental config `full_sources_serialize_dump` in `history_manager`
|
|
122
|
+
|
|
123
|
+
## [1.6.0] - 2025-10-27
|
|
124
|
+
- Add temporary config option `sleep_time_before_update` to avoid rendering issues with sub agent responses`
|
|
125
|
+
|
|
126
|
+
## [1.5.2] - 2025-10-23
|
|
127
|
+
- Run evaluation and post processing in parallel
|
|
128
|
+
|
|
129
|
+
## [1.5.1] - 2025-10-17
|
|
130
|
+
- revert behavior of unique ai upload and chat to
|
|
131
|
+
1. Add upload and chat tool to forced tools if there are tool choices
|
|
132
|
+
2. Simply force it if there are no tool choices.
|
|
133
|
+
3. Tool not available when no uploaded documents
|
|
134
|
+
|
|
135
|
+
## [1.5.0] - 2025-10-16
|
|
136
|
+
- Make code interpreter configurable through spaces 2.0.
|
|
137
|
+
|
|
138
|
+
## [1.4.3] - 2025-10-16
|
|
139
|
+
- Fix issue with openai base url
|
|
140
|
+
|
|
141
|
+
## [1.4.2] - 2025-10-16
|
|
142
|
+
- Update debug info for better tool call tracking
|
|
143
|
+
|
|
144
|
+
## [1.4.1] - 2025-10-16
|
|
145
|
+
- Temporarily make open ai env vars configurable
|
|
146
|
+
|
|
147
|
+
## [1.4.0] - 2025-10-14
|
|
148
|
+
- Add responses api and code execution support.
|
|
149
|
+
|
|
150
|
+
## [1.3.0] - 2025-10-14
|
|
151
|
+
- Re-organize sub-agents configuration for clarity.
|
|
152
|
+
|
|
153
|
+
## [1.2.4] - 2025-10-14
|
|
154
|
+
- Let control taking tool itself set the message state to completed
|
|
155
|
+
|
|
156
|
+
## [1.2.3] - 2025-10-13
|
|
157
|
+
- Fix bug where follow-up questions were being generated even if the number of questions is set to 0 in the config.
|
|
158
|
+
|
|
159
|
+
## [1.2.2] - 2025-10-09
|
|
160
|
+
- update loading path of `DEFAULT_GPT_4o` from `unique_toolkit`
|
|
161
|
+
|
|
162
|
+
## [1.2.1] - 2025-10-07
|
|
163
|
+
- upgrade to deep research 3.0.0
|
|
164
|
+
|
|
165
|
+
## [1.2.0] - 2025-10-07
|
|
166
|
+
- Add sub agent response referencing.
|
|
167
|
+
|
|
168
|
+
## [1.1.1] - 2025-10-03
|
|
169
|
+
- Adapt orchestrator to toolkit 1.8.0.
|
|
170
|
+
|
|
171
|
+
## [1.1.0] - 2025-09-29
|
|
172
|
+
- Add ability to display sub agent's answers in main agent.
|
|
173
|
+
- Add ability to consolidate sub agent's assessment's in main agent.
|
|
174
|
+
|
|
175
|
+
## [1.0.3] - 2025-09-29
|
|
176
|
+
- fix UniqueAI system prompt for not activated tools
|
|
177
|
+
- updated README
|
|
178
|
+
|
|
179
|
+
## [1.0.2] - 2025-09-29
|
|
180
|
+
- updated deep-research to v2
|
|
181
|
+
|
|
182
|
+
## [1.0.1] - 2025-09-18
|
|
183
|
+
- updated toolkit
|
|
184
|
+
|
|
185
|
+
## [1.0.0] - 2025-09-18
|
|
186
|
+
- Bump toolkit version to allow for both patch and minor updates
|
|
187
|
+
|
|
188
|
+
## [0.0.4] - 2025-09-17
|
|
189
|
+
- Updated to latest toolkit
|
|
190
|
+
|
|
191
|
+
## [0.0.3] - 2025-09-16
|
|
192
|
+
- Cleaned configuration
|
|
193
|
+
|
|
194
|
+
## [0.0.2] - 2025-09-15
|
|
195
|
+
- Resolve dependency bug
|
|
196
|
+
|
|
197
|
+
## [0.0.1] - 2025-08-18
|
|
198
|
+
- Initial release of `orchestrator`.
|
|
199
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
unique_orchestrator/config.py,sha256=pjDWnyZ2ebxqtDojGqKnJ8e3fOHwhKHFVsb57qVHslY,13171
|
|
2
|
+
unique_orchestrator/prompts/generic_reference_prompt.jinja2,sha256=fYPaiE-N1gSoOqu85OeEBa_ttAim8grOhHuOHJjSHNU,2663
|
|
3
|
+
unique_orchestrator/prompts/system_prompt.jinja2,sha256=qvI2RLUhl4rwfrivZXGzqE5thg6tcYnEhb4nGp-S5yk,8559
|
|
4
|
+
unique_orchestrator/prompts/user_message_prompt.jinja2,sha256=BQokpBh3H2J-rFk8i-PRph3jy4T1gAJPPb1mxxRWNuM,878
|
|
5
|
+
unique_orchestrator/tests/test_unique_ai_get_filtered_user_metadata.py,sha256=FIF-HomZtRRmWNGZ-XlfL4aXrqyp06oEOWGroLffw0U,9766
|
|
6
|
+
unique_orchestrator/tests/test_unique_ai_log_tool_calls.py,sha256=N1F8l8qqdzaZLIoWrZl9r2GY_xCP1zHNF5RObnqakOQ,30035
|
|
7
|
+
unique_orchestrator/tests/test_unique_ai_reference_order.py,sha256=Nc1IH_G2RGtEzhQavNQgqC6lbsfJzfvVKCbf6B0hUkc,4770
|
|
8
|
+
unique_orchestrator/tests/test_unique_ai_update_debug_info_for_tool_control.py,sha256=5EBouMljOydeCN6yIjBpzLpwLA1DnpSeQAMj8Jt_tYQ,13447
|
|
9
|
+
unique_orchestrator/unique_ai.py,sha256=uPPneJ1avk_twer3OukZK2uyLmXMd3I14I4w51xL5U8,21667
|
|
10
|
+
unique_orchestrator/unique_ai_builder.py,sha256=7zqdutBN2eoaHxLkOe-2XzlI1OABS4k04bj8Yb4wnD0,20901
|
|
11
|
+
unique_orchestrator-1.11.1.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
|
|
12
|
+
unique_orchestrator-1.11.1.dist-info/METADATA,sha256=9-_PRX341Rxs_saMUdfxChBJ0BKFrv_6nrFfuM3JO2s,6341
|
|
13
|
+
unique_orchestrator-1.11.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
14
|
+
unique_orchestrator-1.11.1.dist-info/RECORD,,
|