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 the dependencies become larger, many optional dependencies have mutual conflicts. To generate API documentation, we should be able to load all submodules with only the required dependencies. One way to accomplish this is as follows:
If some_optional_module module is installed, the construction of MyClass will work as expected. If not, it will raise autogen.exceptions.ImportError("MIssing imported module 'some_module', please install it using 'pip install ag2["some-optional-dep-target"]'").
The text was updated successfully, but these errors were encountered:
As the dependencies become larger, many optional dependencies have mutual conflicts. To generate API documentation, we should be able to load all submodules with only the required dependencies. One way to accomplish this is as follows:
If
some_optional_module
module is installed, the construction ofMyClass
will work as expected. If not, it will raiseautogen.exceptions.ImportError("MIssing imported module 'some_module', please install it using 'pip install ag2["some-optional-dep-target"]'")
.The text was updated successfully, but these errors were encountered: