module documentation

Undocumented

Function convert_cli Run the conversion command through the shared CLI error handler.
Function login Login to HubAI.
Function logout Logout from HubAI.
Function validate_api_key Placeholder API key validator used by the login flow.
Variable app Undocumented
@wraps(cli_convert)
def convert_cli(*args: object, **kwargs: object) -> object:

Run the conversion command through the shared CLI error handler.

@app.command(group='Admin')
def login(relogin: Annotated[bool, Parameter([(--relogin), (-r)])] = False):

Login to HubAI.

Parameters
relogin:Annotated[bool, Parameter([(--relogin), (-r)])]Relogin if already logged in.
@app.command(group='Admin')
def logout():

Logout from HubAI.

def validate_api_key(_: str) -> bool:

Placeholder API key validator used by the login flow.

app =

Undocumented