agentx-dev 2.3.2__tar.gz → 2.3.3__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. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/PKG-INFO +1 -1
  2. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/Agents/Agent.py +0 -1
  3. agentx_dev-2.3.3/agentx_dev/resources/__init__.py +3 -0
  4. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev.egg-info/PKG-INFO +1 -1
  5. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/pyproject.toml +1 -1
  6. agentx_dev-2.3.2/agentx_dev/resources/__init__.py +0 -6
  7. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/MANIFEST.in +0 -0
  8. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/README.md +0 -0
  9. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/Agents/__init__.py +0 -0
  10. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/Agents/promptTemplate.yaml +0 -0
  11. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/ChatModel.py +0 -0
  12. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/Runner/AgentRun.py +0 -0
  13. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/Runner/__init__.py +0 -0
  14. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/Runner/promptTemplate.yaml +0 -0
  15. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/Tools.py +0 -0
  16. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/__init__.py +0 -0
  17. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/promptTemplate.yaml +0 -0
  18. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev/resources/promptTemplate.yaml +0 -0
  19. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev.egg-info/SOURCES.txt +0 -0
  20. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev.egg-info/dependency_links.txt +0 -0
  21. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev.egg-info/requires.txt +0 -0
  22. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/agentx_dev.egg-info/top_level.txt +0 -0
  23. {agentx_dev-2.3.2 → agentx_dev-2.3.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentx-dev
3
- Version: 2.3.2
3
+ Version: 2.3.3
4
4
  Summary: A lightweight LLM agent framework with standard and structured tool support use, prompt management, and support for OpenAI.
5
5
  Author-email: Bruce-Arhin Shadrach <brucearhin098@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/shadrach098/Bruce_framework
@@ -45,7 +45,6 @@ class StandardParser(BaseModel):
45
45
 
46
46
 
47
47
 
48
-
49
48
  import importlib.resources as pkg_resources
50
49
  from agentx_dev import resources
51
50
 
@@ -0,0 +1,3 @@
1
+ import importlib.resources as pkg_resources
2
+ from agentx_dev import resources
3
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentx-dev
3
- Version: 2.3.2
3
+ Version: 2.3.3
4
4
  Summary: A lightweight LLM agent framework with standard and structured tool support use, prompt management, and support for OpenAI.
5
5
  Author-email: Bruce-Arhin Shadrach <brucearhin098@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/shadrach098/Bruce_framework
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
 
3
3
  name = "agentx-dev"
4
- version = "2.3.2"
4
+ version = "2.3.3"
5
5
  description = "A lightweight LLM agent framework with standard and structured tool support use, prompt management, and support for OpenAI."
6
6
  authors = [{ name = "Bruce-Arhin Shadrach", email = "brucearhin098@gmail.com" }]
7
7
  # Best practice: link to the license file
@@ -1,6 +0,0 @@
1
- import importlib.resources as pkg_resources
2
- from agentx_dev import resources
3
- from agentx_dev.Agents.Agent import load_prompt_templates
4
-
5
- with pkg_resources.open_text(resources, "promptTemplate.yaml") as f:
6
- system = load_prompt_templates(f)
File without changes
File without changes
File without changes