-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unify output handlers and regular tools, improve exception management…
…, major refactor (#76) * Unify output handlers and regular tools, improve exception management, major refactor * update tests data * Add AuxPrompts class for handling auxiliary error messages in MotleyCrew. * Refactor output handling and documentation in MotleyCrew, enhancing support for direct returns and exception reflection in tools and agents. * Update tests data * Update quickstart docs * bump version
- Loading branch information
Showing
121 changed files
with
1,523 additions
and
810 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
"""Everything agent-related: wrappers, pre-made agents, output handlers etc.""" | ||
|
||
from .abstract_parent import MotleyAgentAbstractParent | ||
from .output_handler import MotleyOutputHandler | ||
from .parent import MotleyAgentParent | ||
from .langchain import LangchainMotleyAgent | ||
|
||
__all__ = [ | ||
"MotleyAgentAbstractParent", | ||
"MotleyAgentParent", | ||
"MotleyOutputHandler", | ||
"LangchainMotleyAgent", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.