fyodorov-llm-agents 0.0.75__tar.gz → 0.0.76__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.75 → fyodorov_llm_agents-0.0.76}/PKG-INFO +1 -1
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/pyproject.toml +1 -1
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/agents/base_agent.py +4 -1
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents.egg-info/PKG-INFO +1 -1
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/README.md +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/setup.cfg +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/__init__.py +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/agents/__init__.py +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/agents/openai.py +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/prompts/__init__.py +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/prompts/prompt.py +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/tools/__init__.py +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/tools/tool.py +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents.egg-info/SOURCES.txt +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents.egg-info/dependency_links.txt +0 -0
- {fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/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.76
|
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
|
@@ -97,7 +97,10 @@ class BaseAgent():
|
|
97
97
|
|
98
98
|
# Process the response assuming it might include multiple tool calls
|
99
99
|
if response.choices and len(response.choices) > 0:
|
100
|
-
|
100
|
+
result_queue.put(f"array length of choices greater than 0")
|
101
|
+
result_queue.put(f"response choices: {response.choices}")
|
102
|
+
result_queue.put(f"response choice 1: {response.choices[0]}")
|
103
|
+
if response.choices[0].finish_reason == 'function_call':
|
101
104
|
tool_calls = response['choices'][0]['message']['function_call']
|
102
105
|
result_queue.put(json.dumps(tool_calls))
|
103
106
|
else:
|
{fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/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.76
|
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.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/__init__.py
RENAMED
File without changes
|
{fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/agents/__init__.py
RENAMED
File without changes
|
{fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/agents/openai.py
RENAMED
File without changes
|
File without changes
|
{fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/prompts/prompt.py
RENAMED
File without changes
|
{fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/tools/__init__.py
RENAMED
File without changes
|
{fyodorov_llm_agents-0.0.75 → fyodorov_llm_agents-0.0.76}/src/fyodorov_llm_agents/tools/tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|