Skip to content

on

autogen.tools.dependency_injection.on #

on(x)
Source code in autogen/tools/dependency_injection.py
def on(x: T) -> Callable[[], T]:
    def inner(_x: T = x) -> T:
        return _x

    return inner