unique_deep_research 3.0.22__tar.gz → 3.0.24__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.22 → unique_deep_research-3.0.24}/CHANGELOG.md +7 -0
  2. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/PKG-INFO +14 -5
  3. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/pyproject.toml +15 -6
  4. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/LICENSE +0 -0
  5. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/README.md +0 -0
  6. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/__init__.py +0 -0
  7. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/config.py +0 -0
  8. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/markdown_utils.py +0 -0
  9. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/service.py +0 -0
  10. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/templates/clarifying_agent.j2 +0 -0
  11. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/templates/openai/oai_research_system_message.j2 +0 -0
  12. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/templates/report_cleanup_prompt.j2 +0 -0
  13. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/templates/research_instructions_agent.j2 +0 -0
  14. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/templates/unique/compress_research_system.j2 +0 -0
  15. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/templates/unique/lead_agent_system.j2 +0 -0
  16. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/templates/unique/report_writer_system_open_deep_research.j2 +0 -0
  17. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/templates/unique/research_agent_system.j2 +0 -0
  18. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/__init__.py +0 -0
  19. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/agents.py +0 -0
  20. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/citation.py +0 -0
  21. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/state.py +0 -0
  22. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/tools.py +0 -0
  23. {unique_deep_research-3.0.22 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/utils.py +0 -0
@@ -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
+ ## [3.0.24] - 2026-01-15
9
+ - Add `pytest-cov` dev dependency for coverage testing
10
+
11
+ ## [3.0.23] - 2026-01-13
12
+ - Add missing `pytest-asyncio` dev dependency
13
+ - Fix tests to use `.invoke()` method for StructuredTool objects
14
+
8
15
  ## [3.0.22] - 2026-01-13
9
16
  - Fixing bug with message logs
10
17
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_deep_research
3
- Version: 3.0.22
3
+ Version: 3.0.24
4
4
  Summary: Deep Research Tool for complex research tasks
5
5
  License: Proprietary
6
6
  Author: Martin Fadler
@@ -9,17 +9,19 @@ Requires-Python: >=3.12,<4.0
9
9
  Classifier: License :: Other/Proprietary License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.12
12
+ Requires-Dist: beautifulsoup4 (>=4.12.0,<5.0.0)
13
+ Requires-Dist: fake-useragent (>=2.0.0,<3.0.0)
14
+ Requires-Dist: httpx (>=0.28.0,<0.29.0)
12
15
  Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
13
16
  Requires-Dist: langchain (>=1.1.0,<2.0.0)
14
17
  Requires-Dist: langchain-core (>=1.0.0,<2.0.0)
15
- Requires-Dist: langchain-openai (>=0.3.32,<0.4.0)
16
18
  Requires-Dist: langgraph (>=1.0.0,<2.0.0)
19
+ Requires-Dist: markdownify (>=0.14.0,<0.15.0)
17
20
  Requires-Dist: openai (>=1.99.0,<2.0.0)
18
21
  Requires-Dist: pydantic (>=2.8.2,<3.0.0)
19
- Requires-Dist: pydantic-settings (>=2.10.1,<3.0.0)
20
- Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
22
+ Requires-Dist: tiktoken (>=0.12.0,<0.13.0)
23
+ Requires-Dist: timeout-decorator (>=0.5.0,<0.6.0)
21
24
  Requires-Dist: typing-extensions (>=4.9.0,<5.0.0)
22
- Requires-Dist: unique-sdk (>=0.10.58,<0.11.0)
23
25
  Requires-Dist: unique-toolkit (>=1.38.3,<2.0.0)
24
26
  Requires-Dist: unique-web-search (>=1.7.0,<2.0.0)
25
27
  Description-Content-Type: text/markdown
@@ -34,6 +36,13 @@ All notable changes to this project will be documented in this file.
34
36
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
35
37
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
36
38
 
39
+ ## [3.0.24] - 2026-01-15
40
+ - Add `pytest-cov` dev dependency for coverage testing
41
+
42
+ ## [3.0.23] - 2026-01-13
43
+ - Add missing `pytest-asyncio` dev dependency
44
+ - Fix tests to use `.invoke()` method for StructuredTool objects
45
+
37
46
  ## [3.0.22] - 2026-01-13
38
47
  - Fixing bug with message logs
39
48
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "unique_deep_research"
3
- version = "3.0.22"
3
+ version = "3.0.24"
4
4
  description = "Deep Research Tool for complex research tasks"
5
5
  authors = [
6
6
  "Martin Fadler <martin.fadler@unique.ch>",
@@ -13,11 +13,8 @@ license = "Proprietary"
13
13
 
14
14
  [tool.poetry.dependencies]
15
15
  python = "^3.12"
16
- typing-extensions = "^4.9.0"
17
16
  pydantic = "^2.8.2"
18
- pydantic-settings = "^2.10.1"
19
- python-dotenv = "^1.0.1"
20
- unique-sdk = "^0.10.58"
17
+ typing-extensions = "^4.9.0"
21
18
  unique-toolkit = "^1.38.3"
22
19
  jinja2 = "^3.1.2"
23
20
  openai = "^1.99.0"
@@ -25,7 +22,12 @@ langgraph = "^1.0.0"
25
22
  langchain = "^1.1.0"
26
23
  langchain-core = "^1.0.0"
27
24
  unique-web-search = "^1.7.0"
28
- langchain-openai = "^0.3.32"
25
+ httpx = "^0.28.0"
26
+ tiktoken = "^0.12.0"
27
+ timeout-decorator = "^0.5.0"
28
+ beautifulsoup4 = "^4.12.0"
29
+ fake-useragent = "^2.0.0"
30
+ markdownify = "^0.14.0"
29
31
 
30
32
 
31
33
  [tool.poetry.group.dev.dependencies]
@@ -33,7 +35,10 @@ unique-sdk = { path = "../../unique_sdk" }
33
35
  unique-toolkit = { path = "../../unique_toolkit" }
34
36
  unique-web-search = { path = "../unique_web_search" }
35
37
  pytest = "^8.4.1"
38
+ pytest-asyncio = "^0.25.0"
39
+ pytest-cov = "^7.0.0"
36
40
  ruff = "^0.12.10"
41
+ deptry = "^0.24.0"
37
42
  opik = "^1.8.42"
38
43
  google = "^3.0.0"
39
44
  google-genai = "^1.46.0"
@@ -43,6 +48,10 @@ google-genai = "^1.46.0"
43
48
  requires = ["poetry-core"]
44
49
  build-backend = "poetry.core.masonry.api"
45
50
 
51
+ [tool.deptry]
52
+ known_first_party = ["unique_deep_research"]
53
+ extend_exclude = ["benchmarking", "tests"]
54
+
46
55
  [tool.ruff]
47
56
  target-version = "py311"
48
57