unique_deep_research 3.2.1__tar.gz → 3.2.2__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.
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/CHANGELOG.md +3 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/PKG-INFO +4 -1
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/pyproject.toml +1 -1
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/service.py +8 -1
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/LICENSE +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/README.md +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/__init__.py +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/config.py +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/markdown_utils.py +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/templates/clarifying_agent.j2 +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/templates/openai/oai_research_system_message.j2 +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/templates/report_cleanup_prompt.j2 +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/templates/research_instructions_agent.j2 +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/templates/unique/compress_research_system.j2 +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/templates/unique/lead_agent_system.j2 +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/templates/unique/report_writer_system_open_deep_research.j2 +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/templates/unique/research_agent_system.j2 +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/unique_custom/__init__.py +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/unique_custom/agents.py +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/unique_custom/citation.py +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/unique_custom/state.py +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/unique_custom/tools.py +0 -0
- {unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/unique_custom/utils.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
|
+
## [3.2.2] - 2026-02-05
|
|
9
|
+
- Fix bug where deep research tool was not using the correct headers causing an authentication error
|
|
10
|
+
|
|
8
11
|
## [3.2.1] - 2026-02-05
|
|
9
12
|
- Use deep research logger instead of tool logger
|
|
10
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: unique_deep_research
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.2
|
|
4
4
|
Summary: Deep Research Tool for complex research tasks
|
|
5
5
|
License: Proprietary
|
|
6
6
|
Author: Martin Fadler
|
|
@@ -36,6 +36,9 @@ All notable changes to this project will be documented in this file.
|
|
|
36
36
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
37
37
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
38
38
|
|
|
39
|
+
## [3.2.2] - 2026-02-05
|
|
40
|
+
- Fix bug where deep research tool was not using the correct headers causing an authentication error
|
|
41
|
+
|
|
39
42
|
## [3.2.1] - 2026-02-05
|
|
40
43
|
- Use deep research logger instead of tool logger
|
|
41
44
|
|
|
@@ -110,7 +110,14 @@ class DeepResearchTool(Tool[DeepResearchToolConfig]):
|
|
|
110
110
|
self.company_id = event.company_id
|
|
111
111
|
self.user_id = event.user_id
|
|
112
112
|
|
|
113
|
-
self.client = get_async_openai_client(
|
|
113
|
+
self.client = get_async_openai_client(
|
|
114
|
+
additional_headers={
|
|
115
|
+
"x-company-id": self.company_id,
|
|
116
|
+
"x-user-id": self.user_id,
|
|
117
|
+
"x-assistant-id": self.event.payload.assistant_id,
|
|
118
|
+
"x-chat-id": self.chat_id,
|
|
119
|
+
}
|
|
120
|
+
)
|
|
114
121
|
|
|
115
122
|
_LOGGER.info(f"Using async OpenAI client pointed to {self.client.base_url}")
|
|
116
123
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{unique_deep_research-3.2.1 → unique_deep_research-3.2.2}/unique_deep_research/markdown_utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|