TrackingConfig autogen.beta.testing.TrackingConfig # TrackingConfig(config) Bases: ModelConfig Source code in autogen/beta/testing.py 69 70 71def __init__(self, config: ModelConfig) -> None: self.config = config self.mock = MagicMock() config instance-attribute # config = config mock instance-attribute # mock = MagicMock() copy # copy() Source code in autogen/beta/testing.py 73 74def copy(self) -> Self: return self create # create() Source code in autogen/beta/testing.py 76 77def create(self) -> TrackingClient: return TrackingClient(self.config.create(), self.mock) create_files_client # create_files_client() Source code in autogen/beta/testing.py 79 80def create_files_client(self) -> None: raise NotImplementedError(f"{type(self).__name__} does not support Files API.")