fyodorov-llm-agents 0.0.74__tar.gz → 0.0.75__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.
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/PKG-INFO +1 -1
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/pyproject.toml +1 -1
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/agents/base_agent.py +1 -1
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents.egg-info/PKG-INFO +1 -1
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/README.md +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/setup.cfg +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/__init__.py +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/agents/__init__.py +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/agents/openai.py +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/prompts/__init__.py +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/prompts/prompt.py +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/tools/__init__.py +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/tools/tool.py +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents.egg-info/SOURCES.txt +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents.egg-info/dependency_links.txt +0 -0
- {fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: fyodorov_llm_agents
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.75
|
4
4
|
Summary: Library for creating LLM-based agents with tools and RAG
|
5
5
|
Author-email: Daniel Ransom <02masseur.alibis@icloud.com>
|
6
6
|
Project-URL: Homepage, https://github.com/FyodorovAI/fyodorov-llm-agents
|
@@ -96,7 +96,7 @@ class BaseAgent():
|
|
96
96
|
)
|
97
97
|
|
98
98
|
# Process the response assuming it might include multiple tool calls
|
99
|
-
if response.choices:
|
99
|
+
if response.choices and len(response.choices) > 0:
|
100
100
|
if response.choices[0]['finish_reason'] == 'function_call':
|
101
101
|
tool_calls = response['choices'][0]['message']['function_call']
|
102
102
|
result_queue.put(json.dumps(tool_calls))
|
{fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents.egg-info/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: fyodorov_llm_agents
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.75
|
4
4
|
Summary: Library for creating LLM-based agents with tools and RAG
|
5
5
|
Author-email: Daniel Ransom <02masseur.alibis@icloud.com>
|
6
6
|
Project-URL: Homepage, https://github.com/FyodorovAI/fyodorov-llm-agents
|
File without changes
|
File without changes
|
{fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/__init__.py
RENAMED
File without changes
|
{fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/agents/__init__.py
RENAMED
File without changes
|
{fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/agents/openai.py
RENAMED
File without changes
|
File without changes
|
{fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/prompts/prompt.py
RENAMED
File without changes
|
{fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/tools/__init__.py
RENAMED
File without changes
|
{fyodorov_llm_agents-0.0.74 → fyodorov_llm_agents-0.0.75}/src/fyodorov_llm_agents/tools/tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|