-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
50 changed files
with
2,744 additions
and
4,318 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
from .datamodel import * | ||
from .database.db_manager import DatabaseManager | ||
from .datamodel import Agent, AgentConfig, Model, ModelConfig, Team, TeamConfig, Tool, ToolConfig | ||
from .teammanager import TeamManager | ||
from .version import __version__ | ||
from .teammanager import * | ||
|
||
__all__ = [ | ||
"Tool", | ||
"Model", | ||
"DatabaseManager", | ||
"Team", | ||
"Agent", | ||
"ToolConfig", | ||
"ModelConfig", | ||
"TeamConfig", | ||
"AgentConfig", | ||
"TeamManager", | ||
"__version__", | ||
] |
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
1 change: 0 additions & 1 deletion
1
python/packages/autogen-studio/autogenstudio/components/__init__.py
This file was deleted.
Oops, something went wrong.
Empty file.
47 changes: 0 additions & 47 deletions
47
python/packages/autogen-studio/autogenstudio/components/agents/userproxy.py
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
python/packages/autogen-studio/autogenstudio/database/__init__.py
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,3 +1,3 @@ | ||
from .db_manager import DatabaseManager | ||
from .component_factory import ComponentFactory, Component | ||
from .component_factory import Component, ComponentFactory | ||
from .config_manager import ConfigurationManager | ||
from .db_manager import DatabaseManager |
Oops, something went wrong.