unique_deep_research 3.0.26__tar.gz → 3.0.28__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.
Files changed (23) hide show
  1. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/CHANGELOG.md +6 -0
  2. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/PKG-INFO +8 -2
  3. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/pyproject.toml +2 -2
  4. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/service.py +2 -1
  5. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/LICENSE +0 -0
  6. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/README.md +0 -0
  7. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/__init__.py +0 -0
  8. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/config.py +0 -0
  9. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/markdown_utils.py +0 -0
  10. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/templates/clarifying_agent.j2 +0 -0
  11. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/templates/openai/oai_research_system_message.j2 +0 -0
  12. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/templates/report_cleanup_prompt.j2 +0 -0
  13. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/templates/research_instructions_agent.j2 +0 -0
  14. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/templates/unique/compress_research_system.j2 +0 -0
  15. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/templates/unique/lead_agent_system.j2 +0 -0
  16. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/templates/unique/report_writer_system_open_deep_research.j2 +0 -0
  17. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/templates/unique/research_agent_system.j2 +0 -0
  18. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/unique_custom/__init__.py +0 -0
  19. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/unique_custom/agents.py +0 -0
  20. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/unique_custom/citation.py +0 -0
  21. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/unique_custom/state.py +0 -0
  22. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/unique_custom/tools.py +0 -0
  23. {unique_deep_research-3.0.26 → unique_deep_research-3.0.28}/unique_deep_research/unique_custom/utils.py +0 -0
@@ -5,6 +5,12 @@ 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.0.28] - 2026-01-26
9
+ - Specify `langchain-openai` version
10
+
11
+ ## [3.0.27] - 2026-01-23
12
+ - Fix bug where deep research model usage analytics were not fully exported
13
+
8
14
  ## [3.0.26] - 2026-01-16
9
15
  - Add local CI testing commands via poethepoet (poe lint, poe test, poe ci-typecheck, etc.)
10
16
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_deep_research
3
- Version: 3.0.26
3
+ Version: 3.0.28
4
4
  Summary: Deep Research Tool for complex research tasks
5
5
  License: Proprietary
6
6
  Author: Martin Fadler
@@ -13,8 +13,8 @@ Requires-Dist: beautifulsoup4 (>=4.12.0,<5.0.0)
13
13
  Requires-Dist: fake-useragent (>=2.0.0,<3.0.0)
14
14
  Requires-Dist: httpx (>=0.28.0,<0.29.0)
15
15
  Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
16
- Requires-Dist: langchain (>=1.1.0,<2.0.0)
17
16
  Requires-Dist: langchain-core (>=1.0.0,<2.0.0)
17
+ Requires-Dist: langchain[openai] (>=1.1.0,<2.0.0)
18
18
  Requires-Dist: langgraph (>=1.0.0,<2.0.0)
19
19
  Requires-Dist: markdownify (>=0.14.0,<0.15.0)
20
20
  Requires-Dist: openai (>=1.99.0,<2.0.0)
@@ -36,6 +36,12 @@ 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.0.28] - 2026-01-26
40
+ - Specify `langchain-openai` version
41
+
42
+ ## [3.0.27] - 2026-01-23
43
+ - Fix bug where deep research model usage analytics were not fully exported
44
+
39
45
  ## [3.0.26] - 2026-01-16
40
46
  - Add local CI testing commands via poethepoet (poe lint, poe test, poe ci-typecheck, etc.)
41
47
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "unique_deep_research"
3
- version = "3.0.26"
3
+ version = "3.0.28"
4
4
  description = "Deep Research Tool for complex research tasks"
5
5
  authors = [
6
6
  "Martin Fadler <martin.fadler@unique.ch>",
@@ -19,7 +19,6 @@ unique-toolkit = "^1.38.3"
19
19
  jinja2 = "^3.1.2"
20
20
  openai = "^1.99.0"
21
21
  langgraph = "^1.0.0"
22
- langchain = "^1.1.0"
23
22
  langchain-core = "^1.0.0"
24
23
  unique-web-search = "^1.7.0"
25
24
  httpx = "^0.28.0"
@@ -28,6 +27,7 @@ timeout-decorator = "^0.5.0"
28
27
  beautifulsoup4 = "^4.12.0"
29
28
  fake-useragent = "^2.0.0"
30
29
  markdownify = "^0.14.0"
30
+ langchain = {version = "^1.1.0", extras = ["openai"]}
31
31
 
32
32
 
33
33
  [tool.poetry.group.dev.dependencies]
@@ -418,9 +418,10 @@ class DeepResearchTool(Tool[DeepResearchToolConfig]):
418
418
 
419
419
  # Prepare configuration for LangGraph
420
420
  additional_openai_proxy_headers = {
421
+ "x-company-id": self.company_id,
421
422
  "x-user-id": self.user_id,
422
- "x-chat-id": self.chat_id,
423
423
  "x-assistant-id": self.event.payload.assistant_id,
424
+ "x-chat-id": self.chat_id,
424
425
  }
425
426
  # Extract tool enablement settings from engine config if it's a UniqueEngine
426
427
  enable_web_tools = True