-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug: discrepancy between [Tool, Tools] and [AgentTool, AgentTools] #202
Comments
Hi, """Module for importing helper functions and Logger."""
from .helpers import is_tool_input, conversation_to_dict
from .logger import Logger
from .tool import AgentTool, AgentTools
__all__ = [
'is_tool_input',
'conversation_to_dict',
'Logger',
'AgentTool',
'AgentTools',
] Can you check again? |
Closing this as this got resolved after the version upgrade v0.1.6 But I see a lot of discrepancies in the examples and documentation. Please, its fine to release slow but don't release buggy things. Its really painful. 😣 |
Can you tell us about those discrepancies to fix them ? |
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: