agentx-dev 2.3.2__tar.gz → 2.3.4__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.
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/PKG-INFO +1 -1
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/Agents/Agent.py +0 -1
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/Runner/AgentRun.py +1 -1
- agentx_dev-2.3.4/agentx_dev/resources/__init__.py +3 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev.egg-info/PKG-INFO +1 -1
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/pyproject.toml +1 -1
- agentx_dev-2.3.2/agentx_dev/resources/__init__.py +0 -6
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/MANIFEST.in +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/README.md +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/Agents/__init__.py +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/Agents/promptTemplate.yaml +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/ChatModel.py +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/Runner/__init__.py +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/Runner/promptTemplate.yaml +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/Tools.py +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/__init__.py +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/promptTemplate.yaml +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev/resources/promptTemplate.yaml +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev.egg-info/SOURCES.txt +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev.egg-info/dependency_links.txt +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev.egg-info/requires.txt +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/agentx_dev.egg-info/top_level.txt +0 -0
- {agentx_dev-2.3.2 → agentx_dev-2.3.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentx-dev
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.4
|
|
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
|
|
@@ -217,7 +217,7 @@ class AgentRunner:
|
|
|
217
217
|
|
|
218
218
|
if not any(entry["role"] == "system" for entry in self.history):
|
|
219
219
|
self.history.append({"role": "system", "content": self.format_prompt})
|
|
220
|
-
if ChatHistory and isinstance(ChatHistory,
|
|
220
|
+
if ChatHistory and isinstance(ChatHistory, list) and all(isinstance(item, dict) for item in ChatHistory):
|
|
221
221
|
for r in ChatHistory:
|
|
222
222
|
if r.role and r.content:
|
|
223
223
|
self.history.append({'role':r.role,'content':r.content + r.timestamp if r.get('timestamp') else r.content})
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentx-dev
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.4
|
|
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.
|
|
4
|
+
version = "2.3.4"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|