h-ai-brain 0.0.19__tar.gz → 0.0.21__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 (35) hide show
  1. {h_ai_brain-0.0.19/src/h_ai_brain.egg-info → h_ai_brain-0.0.21}/PKG-INFO +2 -2
  2. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/pyproject.toml +2 -2
  3. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/application/hai_service.py +1 -4
  4. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21/src/h_ai_brain.egg-info}/PKG-INFO +2 -2
  5. h_ai_brain-0.0.21/src/h_ai_brain.egg-info/requires.txt +4 -0
  6. h_ai_brain-0.0.19/src/h_ai_brain.egg-info/requires.txt +0 -4
  7. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/LICENSE +0 -0
  8. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/NOTICE.txt +0 -0
  9. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/setup.cfg +0 -0
  10. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/__init__.py +0 -0
  11. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/application/__init__.py +0 -0
  12. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/domain/__init__.py +0 -0
  13. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/domain/llm_config.py +0 -0
  14. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/domain/reasoning/__init__.py +0 -0
  15. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/domain/reasoning/llm_chat_repository.py +0 -0
  16. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/domain/reasoning/llm_generate_respository.py +0 -0
  17. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/domain/reasoning/llm_tool_repository.py +0 -0
  18. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/domain/reasoning/text_analysis.py +0 -0
  19. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/domain/reasoning/tool_message.py +0 -0
  20. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/__init__.py +0 -0
  21. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/__init__.py +0 -0
  22. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/data_handler.py +0 -0
  23. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/llm_response_cleaner.py +0 -0
  24. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/ollama/__init__.py +0 -0
  25. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/ollama/models/__init__.py +0 -0
  26. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/ollama/models/ollama_chat_message.py +0 -0
  27. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/ollama/models/ollama_chat_session.py +0 -0
  28. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/ollama/ollama_chat_repository.py +0 -0
  29. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/ollama/ollama_generate_repository.py +0 -0
  30. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/ollama/ollama_tool_repository.py +0 -0
  31. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/prompt_helper.py +0 -0
  32. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai/infrastructure/llm/prompt_loader.py +0 -0
  33. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai_brain.egg-info/SOURCES.txt +0 -0
  34. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai_brain.egg-info/dependency_links.txt +0 -0
  35. {h_ai_brain-0.0.19 → h_ai_brain-0.0.21}/src/h_ai_brain.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: h_ai_brain
3
- Version: 0.0.19
3
+ Version: 0.0.21
4
4
  Summary: AI Research agent API
5
5
  Author-email: shoebill <shoebill.hai@gmail.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -10,7 +10,7 @@ Requires-Python: >=3.10
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  License-File: NOTICE.txt
13
- Requires-Dist: h_message_bus~=0.0.22
13
+ Requires-Dist: requests~=2.32.3
14
14
  Provides-Extra: dev
15
15
  Requires-Dist: pytest; extra == "dev"
16
16
  Dynamic: license-file
@@ -4,7 +4,7 @@
4
4
 
5
5
  [project]
6
6
  name = "h_ai_brain"
7
- version = "0.0.19"
7
+ version = "0.0.21"
8
8
  authors = [
9
9
  {name = "shoebill", email = "shoebill.hai@gmail.com"},
10
10
  ]
@@ -17,7 +17,7 @@
17
17
  "Operating System :: OS Independent",
18
18
  ]
19
19
  dependencies = [
20
- "h_message_bus~=0.0.22",
20
+ "requests~=2.32.3"
21
21
  ]
22
22
 
23
23
  [project.optional-dependencies]
@@ -1,12 +1,9 @@
1
- from h_message_bus import NatsPublisherAdapter
2
-
3
1
  from ..domain.llm_config import LLMConfig
4
2
  from ..infrastructure.llm.ollama.ollama_generate_repository import OllamaGenerateRepository
5
3
 
6
4
 
7
5
  class HaiService:
8
- def __init__(self, nats_publisher_adapter: NatsPublisherAdapter, llm_config: LLMConfig):
9
- self.nats_publisher_adapter = nats_publisher_adapter
6
+ def __init__(self, llm_config: LLMConfig):
10
7
  self.llm_config = llm_config
11
8
  self.llm_generate_repository = OllamaGenerateRepository(
12
9
  self.llm_config.url,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: h_ai_brain
3
- Version: 0.0.19
3
+ Version: 0.0.21
4
4
  Summary: AI Research agent API
5
5
  Author-email: shoebill <shoebill.hai@gmail.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -10,7 +10,7 @@ Requires-Python: >=3.10
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  License-File: NOTICE.txt
13
- Requires-Dist: h_message_bus~=0.0.22
13
+ Requires-Dist: requests~=2.32.3
14
14
  Provides-Extra: dev
15
15
  Requires-Dist: pytest; extra == "dev"
16
16
  Dynamic: license-file
@@ -0,0 +1,4 @@
1
+ requests~=2.32.3
2
+
3
+ [dev]
4
+ pytest
@@ -1,4 +0,0 @@
1
- h_message_bus~=0.0.22
2
-
3
- [dev]
4
- pytest
File without changes
File without changes
File without changes