unique_deep_research 3.0.23__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.23 → unique_deep_research-3.0.24}/CHANGELOG.md +3 -0
  2. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/PKG-INFO +4 -1
  3. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/pyproject.toml +2 -1
  4. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/LICENSE +0 -0
  5. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/README.md +0 -0
  6. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/__init__.py +0 -0
  7. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/config.py +0 -0
  8. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/markdown_utils.py +0 -0
  9. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/service.py +0 -0
  10. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/templates/clarifying_agent.j2 +0 -0
  11. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/templates/openai/oai_research_system_message.j2 +0 -0
  12. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/templates/report_cleanup_prompt.j2 +0 -0
  13. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/templates/research_instructions_agent.j2 +0 -0
  14. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/templates/unique/compress_research_system.j2 +0 -0
  15. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/templates/unique/lead_agent_system.j2 +0 -0
  16. {unique_deep_research-3.0.23 → 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.23 → unique_deep_research-3.0.24}/unique_deep_research/templates/unique/research_agent_system.j2 +0 -0
  18. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/__init__.py +0 -0
  19. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/agents.py +0 -0
  20. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/citation.py +0 -0
  21. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/state.py +0 -0
  22. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/unique_deep_research/unique_custom/tools.py +0 -0
  23. {unique_deep_research-3.0.23 → unique_deep_research-3.0.24}/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.0.24] - 2026-01-15
9
+ - Add `pytest-cov` dev dependency for coverage testing
10
+
8
11
  ## [3.0.23] - 2026-01-13
9
12
  - Add missing `pytest-asyncio` dev dependency
10
13
  - Fix tests to use `.invoke()` method for StructuredTool objects
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_deep_research
3
- Version: 3.0.23
3
+ Version: 3.0.24
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.0.24] - 2026-01-15
40
+ - Add `pytest-cov` dev dependency for coverage testing
41
+
39
42
  ## [3.0.23] - 2026-01-13
40
43
  - Add missing `pytest-asyncio` dev dependency
41
44
  - Fix tests to use `.invoke()` method for StructuredTool objects
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "unique_deep_research"
3
- version = "3.0.23"
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>",
@@ -36,6 +36,7 @@ unique-toolkit = { path = "../../unique_toolkit" }
36
36
  unique-web-search = { path = "../unique_web_search" }
37
37
  pytest = "^8.4.1"
38
38
  pytest-asyncio = "^0.25.0"
39
+ pytest-cov = "^7.0.0"
39
40
  ruff = "^0.12.10"
40
41
  deptry = "^0.24.0"
41
42
  opik = "^1.8.42"