unique_orchestrator 1.0.1__py3-none-any.whl → 1.7.16__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.
- unique_orchestrator/config.py +119 -7
- unique_orchestrator/prompts/system_prompt.jinja2 +26 -3
- unique_orchestrator/prompts/user_message_prompt.jinja2 +9 -4
- unique_orchestrator/tests/test_unique_ai_get_filtered_user_metadata.py +259 -0
- unique_orchestrator/tests/test_unique_ai_log_tool_calls.py +496 -0
- unique_orchestrator/tests/test_unique_ai_reference_order.py +8 -1
- unique_orchestrator/unique_ai.py +194 -24
- unique_orchestrator/unique_ai_builder.py +401 -62
- unique_orchestrator-1.7.16.dist-info/METADATA +168 -0
- unique_orchestrator-1.7.16.dist-info/RECORD +13 -0
- unique_orchestrator-1.0.1.dist-info/METADATA +0 -52
- unique_orchestrator-1.0.1.dist-info/RECORD +0 -11
- {unique_orchestrator-1.0.1.dist-info → unique_orchestrator-1.7.16.dist-info}/LICENSE +0 -0
- {unique_orchestrator-1.0.1.dist-info → unique_orchestrator-1.7.16.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: unique_orchestrator
|
|
3
|
+
Version: 1.7.16
|
|
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.0,<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 (>=0.2.0,<0.3.0)
|
|
22
|
+
Requires-Dist: unique-toolkit (>=1.28.8,<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.7.16] - 2025-11-26
|
|
37
|
+
- Removing log of Deep Research tool call while keeping messages generated within the Deep Research call
|
|
38
|
+
|
|
39
|
+
## [1.7.15] - 2025-11-24
|
|
40
|
+
- Streamlining message log service for listing tools and being compatible with SWOT and DeepSearch
|
|
41
|
+
|
|
42
|
+
## [1.7.14] - 2025-11-20
|
|
43
|
+
- Add message log service
|
|
44
|
+
|
|
45
|
+
## [1.7.13] - 2025-11-20
|
|
46
|
+
- Fix bug of handling properly uploaded files that are expired
|
|
47
|
+
|
|
48
|
+
## [1.7.12] - 2025-11-19
|
|
49
|
+
- Bump Swot tool
|
|
50
|
+
|
|
51
|
+
## [1.7.11] - 2025-11-17
|
|
52
|
+
- Fix bug where forcing a tool still sends builtin tools to the LLM when using the responses api.
|
|
53
|
+
|
|
54
|
+
## [1.7.10] - 2025-11-14
|
|
55
|
+
- Move pytest to dev dependencies
|
|
56
|
+
|
|
57
|
+
## [1.7.9] - 2025-11-12
|
|
58
|
+
- Fix bug where Responses API config was not properly validated
|
|
59
|
+
|
|
60
|
+
## [1.7.8] - 2025-11-11
|
|
61
|
+
- Better display of Responses API config in the UI
|
|
62
|
+
|
|
63
|
+
## [1.7.7] - 2025-11-10
|
|
64
|
+
- Remove direct azure client config from responses api config
|
|
65
|
+
- Organize Responses API config better
|
|
66
|
+
|
|
67
|
+
## [1.7.6] - 2025-11-05
|
|
68
|
+
- Update default system prompt (including user metadata section)
|
|
69
|
+
|
|
70
|
+
## [1.7.5] - 2025-11-05
|
|
71
|
+
- Adding functionality to include user metadata into user/system prompts of the orchestrator
|
|
72
|
+
|
|
73
|
+
## [1.7.4] - 2025-11-04
|
|
74
|
+
- Update and adapt to toolkit 1.23.0 (refactor sub agents implementation)
|
|
75
|
+
|
|
76
|
+
## [1.7.3] - 2025-11-03
|
|
77
|
+
- 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.
|
|
78
|
+
|
|
79
|
+
## [1.7.2] - 2025-11-03
|
|
80
|
+
- Add Swot tool to the orchestrator
|
|
81
|
+
|
|
82
|
+
## [1.7.1] - 2025-10-30
|
|
83
|
+
- Fixing that system format info is only appended to system prompt if tool is called
|
|
84
|
+
|
|
85
|
+
## [1.7.0] - 2025-10-30
|
|
86
|
+
- Add option to customize the display of tool progress statuses.
|
|
87
|
+
- Make follow-questions postprocessor run last to make sure the follow up questions are displayed last.
|
|
88
|
+
|
|
89
|
+
## [1.6.1] - 2025-10-28
|
|
90
|
+
- Removing unused experimental config `full_sources_serialize_dump` in `history_manager`
|
|
91
|
+
|
|
92
|
+
## [1.6.0] - 2025-10-27
|
|
93
|
+
- Add temporary config option `sleep_time_before_update` to avoid rendering issues with sub agent responses`
|
|
94
|
+
|
|
95
|
+
## [1.5.2] - 2025-10-23
|
|
96
|
+
- Run evaluation and post processing in parallel
|
|
97
|
+
|
|
98
|
+
## [1.5.1] - 2025-10-17
|
|
99
|
+
- revert behavior of unique ai upload and chat to
|
|
100
|
+
1. Add upload and chat tool to forced tools if there are tool choices
|
|
101
|
+
2. Simply force it if there are no tool choices.
|
|
102
|
+
3. Tool not available when no uploaded documents
|
|
103
|
+
|
|
104
|
+
## [1.5.0] - 2025-10-16
|
|
105
|
+
- Make code interpreter configurable through spaces 2.0.
|
|
106
|
+
|
|
107
|
+
## [1.4.3] - 2025-10-16
|
|
108
|
+
- Fix issue with openai base url
|
|
109
|
+
|
|
110
|
+
## [1.4.2] - 2025-10-16
|
|
111
|
+
- Update debug info for better tool call tracking
|
|
112
|
+
|
|
113
|
+
## [1.4.1] - 2025-10-16
|
|
114
|
+
- Temporarily make open ai env vars configurable
|
|
115
|
+
|
|
116
|
+
## [1.4.0] - 2025-10-14
|
|
117
|
+
- Add responses api and code execution support.
|
|
118
|
+
|
|
119
|
+
## [1.3.0] - 2025-10-14
|
|
120
|
+
- Re-organize sub-agents configuration for clarity.
|
|
121
|
+
|
|
122
|
+
## [1.2.4] - 2025-10-14
|
|
123
|
+
- Let control taking tool itself set the message state to completed
|
|
124
|
+
|
|
125
|
+
## [1.2.3] - 2025-10-13
|
|
126
|
+
- Fix bug where follow-up questions were being generated even if the number of questions is set to 0 in the config.
|
|
127
|
+
|
|
128
|
+
## [1.2.2] - 2025-10-09
|
|
129
|
+
- update loading path of `DEFAULT_GPT_4o` from `unique_toolkit`
|
|
130
|
+
|
|
131
|
+
## [1.2.1] - 2025-10-07
|
|
132
|
+
- upgrade to deep research 3.0.0
|
|
133
|
+
|
|
134
|
+
## [1.2.0] - 2025-10-07
|
|
135
|
+
- Add sub agent response referencing.
|
|
136
|
+
|
|
137
|
+
## [1.1.1] - 2025-10-03
|
|
138
|
+
- Adapt orchestrator to toolkit 1.8.0.
|
|
139
|
+
|
|
140
|
+
## [1.1.0] - 2025-09-29
|
|
141
|
+
- Add ability to display sub agent's answers in main agent.
|
|
142
|
+
- Add ability to consolidate sub agent's assessment's in main agent.
|
|
143
|
+
|
|
144
|
+
## [1.0.3] - 2025-09-29
|
|
145
|
+
- fix UniqueAI system prompt for not activated tools
|
|
146
|
+
- updated README
|
|
147
|
+
|
|
148
|
+
## [1.0.2] - 2025-09-29
|
|
149
|
+
- updated deep-research to v2
|
|
150
|
+
|
|
151
|
+
## [1.0.1] - 2025-09-18
|
|
152
|
+
- updated toolkit
|
|
153
|
+
|
|
154
|
+
## [1.0.0] - 2025-09-18
|
|
155
|
+
- Bump toolkit version to allow for both patch and minor updates
|
|
156
|
+
|
|
157
|
+
## [0.0.4] - 2025-09-17
|
|
158
|
+
- Updated to latest toolkit
|
|
159
|
+
|
|
160
|
+
## [0.0.3] - 2025-09-16
|
|
161
|
+
- Cleaned configuration
|
|
162
|
+
|
|
163
|
+
## [0.0.2] - 2025-09-15
|
|
164
|
+
- Resolve dependency bug
|
|
165
|
+
|
|
166
|
+
## [0.0.1] - 2025-08-18
|
|
167
|
+
- Initial release of `orchestrator`.
|
|
168
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
unique_orchestrator/config.py,sha256=_IvekrGP32k6cmEvN7q7rl4AP6Axl91Ol97kymWAvDI,12069
|
|
2
|
+
unique_orchestrator/prompts/generic_reference_prompt.jinja2,sha256=fYPaiE-N1gSoOqu85OeEBa_ttAim8grOhHuOHJjSHNU,2663
|
|
3
|
+
unique_orchestrator/prompts/system_prompt.jinja2,sha256=J0nCzvYx0AmRz_ZFfuAlLOCTxquOS9nVwHxszNADYLE,7949
|
|
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=VMCWQFVw72VlfkS9BeX5D5uB4ZnYcW3GmZXJkDWH_Qo,20392
|
|
7
|
+
unique_orchestrator/tests/test_unique_ai_reference_order.py,sha256=Nc1IH_G2RGtEzhQavNQgqC6lbsfJzfvVKCbf6B0hUkc,4770
|
|
8
|
+
unique_orchestrator/unique_ai.py,sha256=fNpb_pXGnEec6aWi7yCWrGnSw7OheLVK2PDfL-BFYKk,22471
|
|
9
|
+
unique_orchestrator/unique_ai_builder.py,sha256=lbY2TIXCsgsddvyBmDn9r7om4C0jw7U81WrtDzEpSps,18960
|
|
10
|
+
unique_orchestrator-1.7.16.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
|
|
11
|
+
unique_orchestrator-1.7.16.dist-info/METADATA,sha256=5SYOM3kQ_XvYkj8OUAFNZI7nmyKg4dIMv3tkp6UxaGg,5394
|
|
12
|
+
unique_orchestrator-1.7.16.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
13
|
+
unique_orchestrator-1.7.16.dist-info/RECORD,,
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: unique_orchestrator
|
|
3
|
-
Version: 1.0.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: pytest (>=8.4.1,<9.0.0)
|
|
15
|
-
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
|
16
|
-
Requires-Dist: typing-extensions (>=4.9.0,<5.0.0)
|
|
17
|
-
Requires-Dist: unique-deep-research (>=1.0.0,<2.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)
|
|
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.1.1,<2.0.0)
|
|
23
|
-
Requires-Dist: unique-web-search (>=1.0.0,<2.0.0)
|
|
24
|
-
Description-Content-Type: text/markdown
|
|
25
|
-
|
|
26
|
-
# Internal Search Tool
|
|
27
|
-
|
|
28
|
-
Internal Search Tool to find documents in the Knowledge Base
|
|
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.0.1] - 2025-09-18
|
|
37
|
-
- updated toolkit
|
|
38
|
-
|
|
39
|
-
## [1.0.0] - 2025-09-18
|
|
40
|
-
- Bump toolkit version to allow for both patch and minor updates
|
|
41
|
-
|
|
42
|
-
## [0.0.4] - 2025-09-17
|
|
43
|
-
- Updated to latest toolkit
|
|
44
|
-
|
|
45
|
-
## [0.0.3] - 2025-09-16
|
|
46
|
-
- Cleaned configuration
|
|
47
|
-
|
|
48
|
-
## [0.0.2] - 2025-09-15
|
|
49
|
-
- Resolve dependency bug
|
|
50
|
-
|
|
51
|
-
## [0.0.1] - 2025-08-18
|
|
52
|
-
- Initial release of `orchestrator`.
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
unique_orchestrator/config.py,sha256=8EvcgwzxbVfCu74Wy61j9K1_mg9KjIly8oB_eyRnanI,8063
|
|
2
|
-
unique_orchestrator/prompts/generic_reference_prompt.jinja2,sha256=fYPaiE-N1gSoOqu85OeEBa_ttAim8grOhHuOHJjSHNU,2663
|
|
3
|
-
unique_orchestrator/prompts/system_prompt.jinja2,sha256=2Dy8GHrT018Sj9UkYGxSfjt7fvTTDvD53BxjDMZRPVY,6897
|
|
4
|
-
unique_orchestrator/prompts/user_message_prompt.jinja2,sha256=KLCfbxMu5R7_V8-AHkdXEmVorcSHNej_xM_7xJyNkl0,692
|
|
5
|
-
unique_orchestrator/tests/test_unique_ai_reference_order.py,sha256=8mZeVP1k8neH4qrFW3oa3zwIdaq2c7R1VvurC7kjBU8,4445
|
|
6
|
-
unique_orchestrator/unique_ai.py,sha256=OFzgyPWvh5mK4p3OxII3hKpQt_dhHBD2BbtHakZ35n8,15635
|
|
7
|
-
unique_orchestrator/unique_ai_builder.py,sha256=QaIY4lMb8HiuyYkUzAhW3IO3eU7j8FIXFU0tqdTHC5I,6105
|
|
8
|
-
unique_orchestrator-1.0.1.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
|
|
9
|
-
unique_orchestrator-1.0.1.dist-info/METADATA,sha256=CFXZr_PRSiowsNWaTVUYo_fvzEjCvvLk0iKczxsPvUg,1647
|
|
10
|
-
unique_orchestrator-1.0.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
11
|
-
unique_orchestrator-1.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|