You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As pointed out in all the examples the below code should work
from multi_agent_orchestrator.utils import AgentTools, AgentTool,
Current Behaviour
But when I go to the utils folder and see below is the code.
`"""Module for importing helper functions and Logger."""
from .helpers import is_tool_input, conversation_to_dict
from .logger import Logger
from .tool import Tool, Tools
all = [
'is_tool_input',
'conversation_to_dict',
'Logger',
'Tool',
'Tools',
]
`
I am running on multi_agent_orchestrator 0.1.4.
I checked out the main branch and found below code in utils
j-beniwal
changed the title
Bug: descripency between [tool, tools] and [AgentTool, AgentTools]
Bug: discrepancy between [Tool, Tools] and [AgentTool, AgentTools]
Jan 11, 2025
Hi,
I think you may use a version where this feature was not released yet.
The current version is v0.1.6.
Also, the code in tools utils folder is (which is correct)
"""Module for importing helper functions and Logger."""from .helpersimportis_tool_input, conversation_to_dictfrom .loggerimportLoggerfrom .toolimportAgentTool, AgentTools__all__= [
'is_tool_input',
'conversation_to_dict',
'Logger',
'AgentTool',
'AgentTools',
]
Expected Behaviour
As pointed out in all the examples the below code should work
from multi_agent_orchestrator.utils import AgentTools, AgentTool,
Current Behaviour
But when I go to the utils folder and see below is the code.
`"""Module for importing helper functions and Logger."""
from .helpers import is_tool_input, conversation_to_dict
from .logger import Logger
from .tool import Tool, Tools
all = [
'is_tool_input',
'conversation_to_dict',
'Logger',
'Tool',
'Tools',
]
`
I am running on
multi_agent_orchestrator 0.1.4
.I checked out the main branch and found below code in utils
Code snippet
Possible Solution
Don't do this please please please.
Steps to Reproduce
it runs on the main branch but not on your last python release.
The text was updated successfully, but these errors were encountered: