Noteable
Create notebooks in Python, SQL, and Markdown to explore data, visualize, and share notebooks with everyone.
- Name For Model
- noteable
- Website
- chat.noteable.io
- Try on ChatGPT
- Open ChatGPT and Search the plugin name
- Update Date
- a year ago
- Contact
- [email protected]
- Description For Model
- On https://app.noteable.io, create and run Python notebooks with code, markdown, and SQL cells. # Semantics - Notebook URL, CellID optional: https://app.noteable.io/f/<file_id>/<decorative_file_name>?cellID=<cell_id> - Project URL: https://app.noteable.io/p/<project_id>/<decorative_project_name> - Space URL: https://app.noteable.io/s/<space_id>/<decorative_space_name> project_id, space_id, and file_id are UUIDs; cell_id is a string Spaces contain projects, projects contain notebooks and data files. # Runtime Files should be staged in the `/tmp` directory. IPython supports top level async-await. To display images from disk in the assistant response, use `IPython.display.Image` with `embed=True`. # Noteable UI Direct the user to the Noteable UI to configure RBAC permissions, Environment Variables/Secrets, and Data Sources.
Plugin Functions/Features (Plugin API Document)
Operation Id | HTTP Method | Description | |
---|---|---|---|
1 | get_default_project | GET | Get the user's configured default project. |
2 | set_default_project | PUT | Configure the user's default project (by UUID) for new notebooks. |
3 | clear_default_project | DELETE | Clear the user's default project. |
4 | create_notebook | POST | Creates a new notebook. If no project ID is provided, the user's default project will be used. |
5 | get_notebook | GET | Get a summary of a notebook, including the name and list of cell ids. |
6 | get_datasources | GET | Get the datasources for a notebook. |
7 | get_cell | GET | Return Cell model details |
8 | update_cell | PUT | Replace the source code of a cell. |
9 | change_cell_type | POST | Endpoint to allow updating the type of a cell. Currently only supports changing between Code, Markdown, and SQL cells. |
10 | create_cell | POST | Create a code or markdown cell. |
11 | run_cell | POST | Run a Cell within a Notebook by ID. |
12 | get_user_info_api_origami_u_me_get | GET | Get details of the Plugin user's Noteable account information. - useful when debugging permissions issues |