Skip to main content

User

What it is

  • A thin subclass of naas_abi.ontologies.modules.NexusPlatformOntology.User.
  • Intended as an “action class” hook point; currently contains no implemented behavior.

Public API

  • class User(_User)
    • actions(self) -> None
      • Placeholder method for custom logic.
      • Currently does nothing (pass).

Configuration/Dependencies

  • Depends on: naas_abi.ontologies.modules.NexusPlatformOntology.User (imported as _User).

Usage

from naas_abi.ontologies.classes.ontology_naas_ai.nexus.User import User

u = User()
u.actions() # no-op

Caveats

  • actions() is not implemented; calling it has no effect until overridden or extended.