Customer created python function
KEY | TYPE | Description |
---|---|---|
notebookId | str | The unique identifier of the notebook used to spin up the notebook upon creation. |
name | str | The name to identify the algorithm, only uppercase letters, numbers, and underscores allowed (i.e. it must be a valid Python identifier) |
createdAt | str | The ISO-8601 string representing when the Python function was created. |
functionVariableMappings | dict | A description of the function variables. |
outputVariableMappings | dict | A description of the variables returned by the function |
functionName | str | The name of the Python function to be used. |
pythonFunctionId | str | The unique identifier of the Python function. |
functionType | str | The type of the Python function. |
packageRequirements | list | The pip package dependencies required to run the code |
description | str | Description of the Python function. |
examples | Dict[str, List[str]] | Dictionary containing example use cases and anti-patterns. Includes 'positive' examples showing recommended usage and 'negative' examples showing cases to avoid. |
codeSource | CodeSource | Information about the source code of the Python function. |