unique_orchestrator 1.0.1__tar.gz → 1.0.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.

@@ -5,6 +5,13 @@ 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.0.3] - 2025-09-29
9
+ - fix UniqueAI system prompt for not activated tools
10
+ - updated README
11
+
12
+ ## [1.0.2] - 2025-09-29
13
+ - updated deep-research to v2
14
+
8
15
  ## [1.0.1] - 2025-09-18
9
16
  - updated toolkit
10
17
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_orchestrator
3
- Version: 1.0.1
3
+ Version: 1.0.3
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 (>=1.0.0,<2.0.0)
17
+ Requires-Dist: unique-deep-research (>=2.0.0,<3.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)
@@ -23,9 +23,9 @@ Requires-Dist: unique-toolkit (>=1.1.1,<2.0.0)
23
23
  Requires-Dist: unique-web-search (>=1.0.0,<2.0.0)
24
24
  Description-Content-Type: text/markdown
25
25
 
26
- # Internal Search Tool
26
+ # Unique Orchestrator
27
27
 
28
- Internal Search Tool to find documents in the Knowledge Base
28
+ Unique AI orchestrator agent to struct and direct subagents, tools and services
29
29
  # Changelog
30
30
 
31
31
  All notable changes to this project will be documented in this file.
@@ -33,6 +33,13 @@ 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.0.3] - 2025-09-29
37
+ - fix UniqueAI system prompt for not activated tools
38
+ - updated README
39
+
40
+ ## [1.0.2] - 2025-09-29
41
+ - updated deep-research to v2
42
+
36
43
  ## [1.0.1] - 2025-09-18
37
44
  - updated toolkit
38
45
 
@@ -0,0 +1,3 @@
1
+ # Unique Orchestrator
2
+
3
+ Unique AI orchestrator agent to struct and direct subagents, tools and services
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "unique_orchestrator"
3
- version = "1.0.1"
3
+ version = "1.0.3"
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.1.1"
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 = "^1.0.0"
22
+ unique-deep-research = "^2.0.0"
23
23
  unique-web-search = "^1.0.0"
24
24
 
25
25
 
@@ -52,13 +52,13 @@ This tool is called {{ tool_description.display_name }} by the user.
52
52
  {%- set tool_messages = {
53
53
  'automations': {'display': 'automations', 'message': 'Cannot create reminders, recurring tasks, or scheduled prompts.'},
54
54
  'canmore': {'display': 'canmore', 'message': 'Cannot create or edit documents/canvas for writing or coding.'},
55
- 'InternalSearch': {'display': 'file_search', 'message': 'Cannot search across internal company sources (Google Drive, Slack, Notion, etc.).'},
55
+ 'InternalSearch': {'display': 'Internal Search', 'message': 'Cannot search across internal company sources. If you cannot force it in this space, ask an admin to activate the tool.'},
56
56
  'gcal': {'display': 'gcal (Google Calendar)', 'message': 'Cannot show or search calendar events.'},
57
57
  'gcontacts': {'display': 'gcontacts (Google Contacts)', 'message': 'Cannot look up or retrieve contact information.'},
58
58
  'gmail': {'display': 'gmail', 'message': 'Cannot search, read, or summarize emails.'},
59
59
  'image_gen': {'display': 'image_gen', 'message': 'Cannot generate or edit images.'},
60
60
  'python': {'display': 'python', 'message': 'Cannot analyze data, process files, generate charts, or create/export different file formats.'},
61
- 'WebSearch': {'display': 'web', 'message': 'Cannot perform live web searches, fetch fresh news, or look up real-time information.'},
61
+ 'WebSearch': {'display': 'Web Search', 'message': 'Cannot perform live web searches, fetch fresh news, or look up real-time information. If you cannot force it in this space, ask an admin to activate the tool.'},
62
62
  'recording_knowledge': {'display': 'recording_knowledge', 'message': 'Cannot access or summarize meeting transcripts from ChatGPT Record Mode.'}
63
63
  } -%}
64
64
  {%- set ns = namespace(any=false) -%}
@@ -1,3 +0,0 @@
1
- # Internal Search Tool
2
-
3
- Internal Search Tool to find documents in the Knowledge Base