-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Get Nested Agents in a
GroupChat
(#1636)
* implements features * fix docstring * adds test * resolve some comments * remove unused group chat manager from test * list implementation * better naming * resolve comments * adds one more test * checks case when agent doesnt exist * clean up --------- Co-authored-by: Chi Wang <[email protected]>
- Loading branch information
1 parent
b270a2e
commit a52f52a
Showing
4 changed files
with
164 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
class AgentNameConflict(Exception): | ||
def __init__(self, msg="Found multiple agents with the same name.", *args, **kwargs): | ||
super().__init__(msg, *args, **kwargs) |
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