unique_orchestrator 1.2.0__tar.gz → 1.2.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.
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/CHANGELOG.md +3 -0
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/PKG-INFO +5 -2
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/pyproject.toml +2 -2
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/LICENSE +0 -0
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/README.md +0 -0
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/unique_orchestrator/config.py +0 -0
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/unique_orchestrator/prompts/generic_reference_prompt.jinja2 +0 -0
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/unique_orchestrator/prompts/system_prompt.jinja2 +0 -0
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/unique_orchestrator/prompts/user_message_prompt.jinja2 +0 -0
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/unique_orchestrator/tests/test_unique_ai_reference_order.py +0 -0
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/unique_orchestrator/unique_ai.py +0 -0
- {unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/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.2.1] - 2025-10-07
|
|
9
|
+
- upgrade to deep research 3.0.0
|
|
10
|
+
|
|
8
11
|
## [1.2.0] - 2025-10-07
|
|
9
12
|
- Add sub agent response referencing.
|
|
10
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: unique_orchestrator
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary:
|
|
5
5
|
License: Proprietary
|
|
6
6
|
Author: Andreas Hauri
|
|
@@ -14,7 +14,7 @@ Requires-Dist: pydantic-settings (>=2.10.1,<3.0.0)
|
|
|
14
14
|
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
|
-
Requires-Dist: unique-deep-research (>=
|
|
17
|
+
Requires-Dist: unique-deep-research (>=3.0.0,<4.0.0)
|
|
18
18
|
Requires-Dist: unique-follow-up-questions (>=1.0.0,<2.0.0)
|
|
19
19
|
Requires-Dist: unique-internal-search (>=1.0.0,<2.0.0)
|
|
20
20
|
Requires-Dist: unique-sdk (>=0.10.24,<0.11.0)
|
|
@@ -33,6 +33,9 @@ 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.1] - 2025-10-07
|
|
37
|
+
- upgrade to deep research 3.0.0
|
|
38
|
+
|
|
36
39
|
## [1.2.0] - 2025-10-07
|
|
37
40
|
- Add sub agent response referencing.
|
|
38
41
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "unique_orchestrator"
|
|
3
|
-
version = "1.2.
|
|
3
|
+
version = "1.2.1"
|
|
4
4
|
description = ""
|
|
5
5
|
authors = ["Andreas Hauri <andreas.hauri@unique.ai>"]
|
|
6
6
|
readme = ["README.md", "CHANGELOG.md"]
|
|
@@ -19,7 +19,7 @@ unique-toolkit = "^1.11.0"
|
|
|
19
19
|
unique-stock-ticker = "^1.0.0"
|
|
20
20
|
unique-follow-up-questions = "^1.0.0"
|
|
21
21
|
unique-internal-search = "^1.0.0"
|
|
22
|
-
unique-deep-research = "^
|
|
22
|
+
unique-deep-research = "^3.0.0"
|
|
23
23
|
unique-web-search = "^1.0.0"
|
|
24
24
|
|
|
25
25
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{unique_orchestrator-1.2.0 → unique_orchestrator-1.2.1}/unique_orchestrator/unique_ai_builder.py
RENAMED
|
File without changes
|