gemini-agent-framework 0.1.0__tar.gz → 0.1.1__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.
- {gemini_agent_framework-0.1.0 → gemini_agent_framework-0.1.1}/PKG-INFO +1 -1
- {gemini_agent_framework-0.1.0 → gemini_agent_framework-0.1.1}/pyproject.toml +1 -1
- gemini_agent_framework-0.1.1/src/gemini_agent/__init__.py +4 -0
- {gemini_agent_framework-0.1.0 → gemini_agent_framework-0.1.1}/src/gemini_agent/agent.py +2 -0
- gemini_agent_framework-0.1.0/src/gemini_agent/__init__.py +0 -4
- {gemini_agent_framework-0.1.0 → gemini_agent_framework-0.1.1}/.gitignore +0 -0
- {gemini_agent_framework-0.1.0 → gemini_agent_framework-0.1.1}/README.md +0 -0
- {gemini_agent_framework-0.1.0 → gemini_agent_framework-0.1.1}/requirements.txt +0 -0
- {gemini_agent_framework-0.1.0 → gemini_agent_framework-0.1.1}/tests/test_agent.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: gemini-agent-framework
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: A framework for building agents that use Gemini's function calling capabilities
|
5
5
|
Project-URL: Homepage, https://github.com/m7mdony/gemini-agent-framework
|
6
6
|
Project-URL: Documentation, https://github.com/m7mdony/gemini-agent-framework#readme
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "gemini-agent-framework"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.1"
|
8
8
|
description = "A framework for building agents that use Gemini's function calling capabilities"
|
9
9
|
readme = "README.md"
|
10
10
|
requires-python = ">=3.8"
|
@@ -192,6 +192,8 @@ class Agent:
|
|
192
192
|
self._intermediate_results = {}
|
193
193
|
|
194
194
|
if not system_prompt:
|
195
|
+
system_prompt = self._get_system_prompt() + system_prompt
|
196
|
+
else:
|
195
197
|
system_prompt = self._get_system_prompt()
|
196
198
|
|
197
199
|
current_contents = conversation_history if conversation_history else []
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|