create_notebook
Generate a new notebook in Databricks workspace by specifying path, content, language, and overwrite options to organize and execute code efficiently.
Instructions
Create a new notebook in the Databricks workspace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
language | No | PYTHON | |
overwrite | No | ||
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"language": {
"default": "PYTHON",
"title": "Language",
"type": "string"
},
"overwrite": {
"default": false,
"title": "Overwrite",
"type": "boolean"
},
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path",
"content"
],
"title": "create_notebookArguments",
"type": "object"
}