ou_container_builder.packs.jupyterlab
#
Functionality to install JupyterLab.
- class ou_container_builder.packs.jupyterlab.Options(*, version: Literal[4] = 4, announcements: bool = False)#
Options for the JupyterLab pack.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'announcements': FieldInfo(annotation=bool, required=False, default=False), 'version': FieldInfo(annotation=Literal[4], required=False, default=4)}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.