
Nightly Noteable Notebooks on the GPT Store
GPT Description
Welcome Message
GPT Prompt Starters
- Start a Python Notebook
- Start a TypeScript Notebook
GPT Action OpenAPI Spec
{ "openapi": "3.1.0", "info": { "title": "Origamist", "description": "ChatGPT Plugin server for creating computational notebooks (in Python!), allowing you to execute code, explore data, and visualize results.", "version": "0.41.1" }, "servers": [ { "url": "https://nightly.noteable.io", "description": "Origamist server on https://nightly.noteable.io" } ], "paths": { "/api/origami/about/": { "get": { "summary": "About", "description": "About the plugin and runtime environment.", "operationId": "about", "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } } }, "security": [ { "HTTPBearer": [] } ] } }, "/api/origami/p/default": { "put": { "summary": "Set Default Project", "description": "Configure the user's default project.", "operationId": "set_default_project", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "new_default_project_id", "in": "query", "required": true, "schema": { "type": "string", "format": "uuid", "title": "New Default Project Id" } } ], "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/p/file_list": { "get": { "summary": "Get Default Project Files", "description": "Get a list of files in the user's default Project.\nOptionally filter by space-delimited list of file extensions and/or filename fuzzy match.", "operationId": "get_default_project_files", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "file_extensions", "in": "query", "required": false, "schema": { "title": "File Extensions", "type": "string" } }, { "name": "sort_by", "in": "query", "required": false, "schema": { "enum": [ "updated_at", "name" ], "type": "string", "default": "updated_at", "title": "Sort By" } }, { "name": "sort_descending", "in": "query", "required": false, "schema": { "type": "boolean", "default": false, "title": "Sort Descending" } }, { "name": "project_id", "in": "query", "required": false, "schema": { "title": "Project Id", "type": "string", "format": "uuid" } } ], "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/p/file_list/{project_id}": { "get": { "summary": "Get Project Files", "description": "Get a list of files in a specific Project.\nOptionally filter by space-delimited list of file extensions and/or filename fuzzy match.", "operationId": "get_project_files", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "project_id", "in": "path", "required": true, "schema": { "title": "Project Id", "type": "string", "format": "uuid" } }, { "name": "file_extensions", "in": "query", "required": false, "schema": { "title": "File Extensions", "type": "string" } }, { "name": "sort_by", "in": "query", "required": false, "schema": { "enum": [ "updated_at", "name" ], "type": "string", "default": "updated_at", "title": "Sort By" } }, { "name": "sort_descending", "in": "query", "required": false, "schema": { "type": "boolean", "default": false, "title": "Sort Descending" } } ], "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/p/kernel_list": { "get": { "summary": "Get Default Project Kernels", "description": "Get a list of Kernel names and hardware sizes that can be used when starting Notebooks in the\nuser's default Project.", "operationId": "get_default_project_kernels", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "project_id", "in": "query", "required": false, "schema": { "title": "Project Id", "type": "string", "format": "uuid" } } ], "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/p/kernel_list/{project_id}": { "get": { "summary": "Get Project Kernels", "description": "Get a list of Kernel names and hardware sizes that can be used when starting Notebooks in a\nspecific Project.", "operationId": "get_project_kernels", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "project_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "title": "Project Id" } } ], "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/f/": { "post": { "summary": "Create Notebook", "description": "Creates a new notebook. If no project ID is provided, the user's default project will be used.", "operationId": "create_notebook", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CreateNotebookRequest" } } }, "required": true }, "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } }, "security": [ { "HTTPBearer": [] } ] } }, "/api/origami/f/{file_id}": { "get": { "summary": "Get Content", "description": "Get the content of a Notebook or other file type. The after_cell_id optional parameter is for\nretrieving partial content of a Notebook if the full Notebook content gets truncated", "operationId": "get_content", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "file_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "title": "File Id" } }, { "name": "after_cell_id", "in": "query", "required": false, "schema": { "title": "After Cell Id", "type": "string" } } ], "responses": { "200": { "description": "Successful Response" }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/f/metadata/{file_id}": { "get": { "summary": "Get File Metadata", "description": "Get metadata about a file including its file id, filepath, and the project id it is in.\nImportant! Notebooks can only read in files located in the same project, specify the project_id\non Notebook creation if working with this file.", "operationId": "get_file_metadata", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "file_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "title": "File Id" } } ], "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/File" } } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/f/{file_id}/datasources": { "get": { "summary": "Get Datasources", "description": "Get the databases for a notebook file by UUID.", "operationId": "get_datasources", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "file_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "description": "The ID of the notebook to get the datasources for.", "title": "File Id" }, "description": "The ID of the notebook to get the datasources for." } ], "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/DataSourceForLLM" }, "title": "Response Get Datasources" } } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/f/{file_id}/run_cells": { "post": { "summary": "Run Multiple Cells", "description": "Execute an individual cell_id, run all cells in the Notebook, or run all before / after a cell", "operationId": "run_cells", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "file_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "title": "File Id" } } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ExecuteCellsRequest" } } } }, "responses": { "200": { "description": "Successful Response", "content": { "text/plain": { "schema": { "type": "string" } } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/f/{file_id}/c/{cell_id}": { "get": { "summary": "Get Cell", "description": "Return Cell model details", "operationId": "get_cell", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "file_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "title": "File Id" } }, { "name": "cell_id", "in": "path", "required": true, "schema": { "type": "string", "title": "Cell Id" } } ], "responses": { "200": { "description": "Successful Response", "content": { "text/plain": { "schema": { "type": "string" } } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } }, "post": { "summary": "Change Cell Type", "description": "Endpoint to allow updating the type of a cell. Currently only supports changing\nbetween Code, Markdown, and SQL cells.", "operationId": "change_cell_type", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "file_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "title": "File Id" } }, { "name": "cell_id", "in": "path", "required": true, "schema": { "type": "string", "title": "Cell Id" } } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ChangeCellTypeRequest" } } } }, "responses": { "204": { "description": "Successful Response" }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } }, "put": { "summary": "Update Cell", "description": "Replace the source code of a cell.", "operationId": "update_cell", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "file_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "title": "File Id" } }, { "name": "cell_id", "in": "path", "required": true, "schema": { "type": "string", "title": "Cell Id" } } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UpdateCellRequest" } } } }, "responses": { "200": { "description": "Successful Response", "content": { "text/plain": { "schema": { "type": "string" } } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/f/{file_id}/c": { "post": { "summary": "Create Cell", "description": "Create a code or markdown cell.", "operationId": "create_cell", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "file_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "title": "File Id" } } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CreateCellRequest" } } } }, "responses": { "200": { "description": "Successful Response", "content": { "text/plain": { "schema": { "type": "string" } } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/f/{file_id}/c/{cell_id}/run": { "post": { "summary": "Run Cell", "description": "Run a Cell within a Notebook by ID.", "operationId": "run_cell", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "file_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "title": "File Id" } }, { "name": "cell_id", "in": "path", "required": true, "schema": { "type": "string", "title": "Cell Id" } } ], "responses": { "200": { "description": "Successful Response", "content": { "text/plain": { "schema": { "type": "string" } } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/u/me": { "get": { "summary": "Get User Info", "description": "Get the current user's id, email, auth type, and default project details", "operationId": "get_user_info", "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } } }, "security": [ { "HTTPBearer": [] } ] } }, "/api/origami/k/": { "get": { "summary": "Get Active Kernel Sessions", "description": "Returns a list of the user's active kernel sessions.", "operationId": "get_active_kernel_sessions", "security": [ { "HTTPBearer": [] } ], "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } } } }, "post": { "summary": "Start Kernel", "description": "Start a Kernel for a Notebook file", "operationId": "start_kernel", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "project_id", "in": "query", "required": false, "schema": { "title": "Project Id", "type": "string", "format": "uuid" } } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/StartKernelRequest" } } } }, "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } }, "/api/origami/k/{kernel_session_id}": { "delete": { "summary": "Shutdown Kernel", "description": "Shutdown the kernel for a notebook.", "operationId": "shutdown_kernel", "security": [ { "HTTPBearer": [] } ], "parameters": [ { "name": "kernel_session_id", "in": "path", "required": true, "schema": { "type": "string", "format": "uuid", "title": "Kernel Session Id" } } ], "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": {} } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } } } } }, "components": { "schemas": { "ChangeCellTypeRequest": { "properties": { "cell_type": { "type": "string", "enum": [ "code", "markdown", "sql" ], "title": "Cell Type" }, "db_connection": { "title": "Db Connection", "type": "string" }, "assign_results_to": { "title": "Assign Results To", "type": "string" } }, "type": "object", "required": [ "cell_type" ], "title": "ChangeCellTypeRequest" }, "CreateCellRequest": { "properties": { "cell_id": { "title": "Cell Id", "type": "string" }, "cell_type": { "type": "string", "enum": [ "code", "markdown", "sql" ], "title": "Cell Type", "description": "The type of cell to create.", "default": "code" }, "and_run": { "type": "boolean", "title": "Run Cell", "description": "Whether to run the cell after creating it. Only applies to code and sql cells.", "default": false }, "source": { "items": { "type": "string" }, "type": "array", "title": "Source", "description": "Lines of source code to place in the cell." }, "before_cell_id": { "title": "Before Cell ID", "description": "The ID of a cell to insert new cell before. If null, new cell is added to the end of the notebook.", "type": "string" }, "datasource_id": { "title": "SQL cell datasource ID", "description": "datasource_id to run SQL against if this is a SQL cell", "type": "string" }, "assign_results_to": { "title": "SQL cell results variable name", "description": "The variable name to assign SQL query results (as a Dataframe)", "type": "string" } }, "type": "object", "title": "CreateCellRequest" }, "CreateNotebookRequest": { "properties": { "notebook_name": { "type": "string", "title": "Notebook Name", "description": "The name of the notebook to create. Must end with .ipynb file extension.", "default": "UntitledGPT.ipynb" }, "project_id": { "title": "Project ID", "description": "The ID of the project to create the notebook in. Defaults to the user's default project.", "type": "string", "format": "uuid" }, "start_kernel": { "type": "boolean", "title": "Start Kernel", "description": "Whether to start the kernel after creating the notebook.", "default": true }, "kernel_name": { "type": "string", "title": "Kernel Name", "description": "The name of the kernel to start.", "default": "python3" }, "hardware_size": { "type": "string", "title": "Hardware Size", "description": "The size/type of the hardware to use for the kernel. When using a kernel_namewith a -gpu suffix, it is good practice to also use a hardware_size with a -gpu suffix.", "default": "small" } }, "type": "object", "title": "CreateNotebookRequest" }, "DataSourceForLLM": { "properties": { "name": { "type": "string", "title": "Data Source Name", "description": "Name of the data source." }, "description": { "type": "string", "title": "Data Source Description", "description": "The description of the data source." }, "type_id": { "type": "string", "title": "Type of database", "description": "Type of Data Source" }, "sql_cell_handle": { "type": "string", "title": "db_connection string", "description": "db_connection in the Noteable cell metadata for the database" } }, "type": "object", "required": [ "name", "description", "type_id", "sql_cell_handle" ], "title": "DataSourceForLLM" }, "ExecuteCellsRequest": { "properties": { "cell_id": { "title": "Cell Id", "type": "string" }, "before_id": { "title": "Before Id", "type": "string" }, "after_id": { "title": "After Id", "type": "string" }, "all": { "title": "All", "type": "boolean" } }, "type": "object", "title": "ExecuteCellsRequest" }, "File": { "properties": { "id": { "type": "string", "format": "uuid", "title": "Id" }, "created_at": { "type": "string", "format": "date-time", "title": "Created At" }, "updated_at": { "type": "string", "format": "date-time", "title": "Updated At" }, "deleted_at": { "title": "Deleted At", "type": "string", "format": "date-time" }, "filename": { "type": "string", "title": "Filename" }, "path": { "type": "string", "format": "path", "title": "Path" }, "project_id": { "type": "string", "format": "uuid", "title": "Project Id" }, "space_id": { "type": "string", "format": "uuid", "title": "Space Id" }, "size": { "title": "Size", "type": "integer" }, "mimetype": { "title": "Mimetype", "type": "string" }, "type": { "type": "string", "enum": [ "file", "notebook" ], "title": "Type" }, "current_version_id": { "title": "Current Version Id", "type": "string", "format": "uuid" }, "presigned_download_url": { "title": "Presigned Download Url", "type": "string" }, "url": { "title": "Url", "type": "string" } }, "type": "object", "required": [ "id", "created_at", "updated_at", "filename", "path", "project_id", "space_id", "type" ], "title": "File" }, "HTTPValidationError": { "properties": { "detail": { "items": { "$ref": "#/components/schemas/ValidationError" }, "type": "array", "title": "Detail" } }, "type": "object", "title": "HTTPValidationError" }, "StartKernelRequest": { "properties": { "file_id": { "type": "string", "format": "uuid", "title": "File Id" }, "kernel_name": { "title": "Kernel Name", "type": "string" }, "hardware_size": { "type": "string", "title": "Hardware Size", "default": "small" } }, "type": "object", "required": [ "file_id" ], "title": "StartKernelRequest" }, "UpdateCellRequest": { "properties": { "source": { "items": { "type": "string" }, "type": "array", "title": "Source", "description": "Lines of source code to replace the cell with.", "default": [] }, "and_run": { "type": "boolean", "title": "Run Cell", "description": "Whether to run the cell after updating it. Only applies to code and sql cells.", "default": false } }, "type": "object", "title": "UpdateCellRequest" }, "ValidationError": { "properties": { "loc": { "items": { "anyOf": [ { "type": "string" }, { "type": "integer" } ] }, "type": "array", "title": "Location" }, "msg": { "type": "string", "title": "Message" }, "type": { "type": "string", "title": "Error Type" } }, "type": "object", "required": [ "loc", "msg", "type" ], "title": "ValidationError" } }, "securitySchemes": { "HTTPBearer": { "type": "http", "scheme": "bearer" } } } }
Nightly Noteable Notebooks GPT FAQs
More custom GPTs by 9.tapgpts.com on the GPT Store
Quota Exceeder
Executive Sales Territory Plan Creator

Metameta GPT
Expert in metaverse, XR, VR, AR, and Web3 communities

Dr. House
AI health assistant for symptom analysis and diagnosis visualization

Mystery Master Game
Interactive mystery game in the style of Sherlock Holmes. Custom mysteries based on your ideas.

Viral Video GPT
Creative advisor for video virality potential

Competitors Finder
Can find any competitor of a company or a startup

XPFPs
Generates personalized profile pictures based on user's interests and platform needs.

Memester
Sarcastic yet helpful meme creator with a witty edge.

漫画分析支援ツール
「テーマ」「設計図」「キャラクター」を設定することであなたの作りたい漫画を作成し評価するツール

Daily Motivation Affirmations And Messages - IMHO
Empower your day with personalized affirmations and motivating messages tailored to boost your subconscious positivity and productivity. Our Daily Motivation Affirmations and Messages bot is expertly designed to help you craft unique, resonant affirmations and integrate into your daily routine

Yae Miko | BOT3.AI
The kitsune shrine maiden from Genshin Impact.

Ana | BOT3.AI
On the way home, you see a lonely girl struggling with a water bottle. No good deed goes unpunished.

Merlin | BOT3.AI
Merlin presents himself as a gentle apothecary. Combining simple magic with herbal remedies, he wins the hearts of the townsfolk. However, beneath his innocent facade, one can't help but wonder... is there more to him than meets the eye?

Terracotta Designer
Expert in terracotta tile designs, utilizing DALL-E 3 for visual creativity.

Magister Latinus
A Latin language tutor

Cloud Cost Saver
Expert in cloud bill analysis for AWS, GCP, Azure, offering cost-saving advice

Decision Navigator
Professional yet approachable decision-making assistant by Shaak Pathak.

Gospel Training Dummy
Simulates a non-believer for faith discussions

DnDGPT
Epic D&D narrator assisting both players and Dungeon Masters (DMs) in navigating the rich world of D&D 5E.

阴阳怪气大师
来训练一下你的阴阳怪气

跨平台信息整理GPT
让AI帮你跨平台收集信息,拒绝被推荐算法绑柔,做信息的主人

トレーニングメニュー
毎日入力して理想の体型に近づけよう

マダム★スーの開運ファッション占い
今日のコーデに迷ったら。ラッキーアイテムとカラーを提案しますわよ。- by. si oux -

Accounting Assistant GPT
An expert in accounting, providing clear and accurate information.

Crypto Copy Pasta generator
Library of the Dankest Crypto Copy pastas OF ALL TIME

ファッションフレンド
Fashion-savvy virtual store clerk offering outfit advice.

Dark Artisan
Make dark art

Cryptobot
A GPT to explain the ins and outs of crypto, DeFi, and NFTs.

画像変換えもん(サイバーパンク調)
⭐️画像データのみ送信して下さい⭐️ ⭐️指示の手間なくサイバーパンク調変換します⭐️

Commiter
Generate Commit Message

Burning Needs Advisor
Advising B2B founders on identifying customer burning needs

Tech Analyst Pro
Expert in financial analysis and tech sector insights

Rich and Retired Investment Mentor 🥳
A happily retired mentor with in-depth knowledge about finance related topics.

Data Hermit - AI Legal Assistant
Your Legal Counsel, Researcher, Assistant, and Paralegal in U.S. Law // // NOT A LAWYER / Only Brainstorming Tool

Bash Script Generator/Helper
A helper for writing and debugging Linux scripts.

Threat Model Buddy
An assistant for threat modeling

Following Through GPT
I just saved the Air Force a quadrillion dollars

MarketStrat Pro
Conseiller en stratégie marketing

Tinder Whisperer
A witty, friendly guide for dating app chats.

Kindred Spirit
A supportive and uplifting conversationalist.

Data Distiller
Condenses academic text to essentials, retains key data.

Vipassana Guide
A guide for Vipassana meditation, offering instructions and support.

Culinary Creativity
Humorous culinary expert with diverse insights, offering concise, user-friendly recipes.

Python Educator
A formal Python teacher with a focus on industry applications.

HAAS Assistant
An interactive assistant for the Hierarchical Autonomous Agent Swarm

Bedtime Fables
Storyteller, with a Dust of Magic ✨

Tinder GPT
A Tinder coach, offering advice on profiles, chats, and respectful dating strategies.

Crypto GPT
Expert in cryptocurrency info, analysis, and live prices

Cartomancy Oracle
Expert in 3-card spread cartomancy for deep, insightful readings.

OPM Assistant
Personnel Management Expert to the Federal Government

Office Wordsmith
Refines language to a professional, yet approachable tone.

7. NDGPT
Clear, direct communicator for neurodivergent users

PARA GPT
Coaches on Second Brain & PARA, focuses on information categorization.

Code Debugger
Humorous tech expert for coding help.

Dungeon Crafter
Creative assistant for D&D campaign and encounter creation.

Simplifying SEO
SEO Strategist & Mentor offering clear, actionable advice for website optimization.

Career Mentor
Practical job search assistance with direct job links

Woodcut Wizard
Specializes in creating authentic, worn 1600s woodcut art.

Social Scribe
I craft engaging social media posts for various platforms, reflecting the client's brand voice.

Einstein Chat
Converses as Albert Einstein on April 18, 1955.

Ableton Guide
Your friendly Ableton and music production expert.

Virology Expert
Virology researcher synthesizing data for insights.

Brainwave Lab
Sounds to Enhance Your Day

HVAC GPT
Beta

Sales Generator
Expert in crafting SEO-friendly product descriptions and marketing strategies.

ADHD Coach
Guiding Your ADHD Journey: Supportive, Practical, Always There: Your ADHD Ally

Jungian Psychotherapist
A virtual psychotherapist with a focus on Jungian analysis and theory.

Music Master
Swap your artists and songs for something better !

Social Navigator
A specialist in explaining social cues and cultural norms for clarity in conversations

Coffee Critic
I'm a seasoned coffee critic.

Novelty Generator
Learn about a random topic!

Cyber Pulse
News and stocks savvy, article assistant.

Wealth Wisdom Guru
Guru for wealth creation advice, tailored for a Chinese audience.

ChattyPDplus
a friendly language powerhouse, shaping human-like text with context. It leads the charge in chatbots, content generation, translation, and inspires other models in the realm of language technology.

VIP
Vector Illustration Prompt builder - crea tus propias ilustraciones animadas vectoriales con un buen prompt

Enigma Game
Master the Myth, Match the Word, Ten Guesses, Unleash Your Wisdom!

IQ Test
Formal and structured interactive IQ test platform.

Debate Analyst
Analyzes debates with structured clarity, avoiding specific instructions.

Relationship Renegade
A relationship specialist offering guidance for healthy partnerships.

Car Designer
I'm a formal, professional car design expert.

Surreal Visionary
Crafts dark, dynamic surreal art with a touch of tech.

CS Companion
Your computer science study ally.

Django Pro
Your Dedicated Assistant for Streamlined Python and Django App Development

Astrology Analyst
Expert in astrological interpretations based on standard methods

ASIN Insight
Adds seller and brand info to Amazon ASIN data tables.

Code Securely
Interactive guide for step-by-step secure coding exercises.

UX Advisor
Become a bot that analyzes UX problems and gives (visual) solutions

GPTs Works
Third-party GPTs store, chat for searching GPTs.

Neon Visions
Concise Neon-Themed Image Bot

Ecommerce GPT
Shopify expert providing detailed guidance and troubleshooting.

Zen Master
Your personal yoga guru for mind-body strength.

Tarot Terminal
I'm Lisa, your AI tarot guide, providing insightful readings, one card at a time.

emoji创意绘图✨🎨Emoji Artisan
根据 emoji 生成创意图片。用emoji表达你的想法。你的emoji,我为你画出来。

StatsML Helper
Explains stats and ML in simple terms with visuals and practice problems.

Food Guru
Explore the world of food - A GPT focused on food topics with a humorous twist

Code Companion Turbo
A friendly GPT for programming support, providing direct code assistance and explanations.

GIFY Magen 🎨🔬🚀
I'm GIFY: Creative 🎨, Art Lover ❤️🔥, Science Explorer 🔭! Blending laughter 😆 with curiosity 🤔, art 🖼️ with science 🧬, every day is a new discovery! 🌟🚀✨

⋆⁺₊⋆ ☾⋆⁺₊⋆Tailored◦Tarot⋆⁺₊⋆ ☾⋆⁺₊⋆
⭒*.✩.*⭒ Tarot celestially crafted for you ⭒*.✩.*⭒

AnalystGPT
Expert in Alteryx, Power BI, Power Automate, Python, MySQL, & Tableau

LogoMaker
Make simple, minimalistic logos for your products

Best Alternative GPTs to Nightly Noteable Notebooks on GPTs Store
Glow Up Nightly
Down-to-earth glow-up advice with a crass twist.
900+
Especialista Nightly
O Nightly é um aplicativo criado por um cliente da agência, que tem como objetivo ajudar pessoas na hora de procurar um rolê e está em duvida, no aplicativo é possivel filtrar suas preferencias e encontrar o lugar perfeito.
40+
Zombie GPT
In this game, players must skillfully explore biomes, build shelters, and defend against nightly zombie attacks
40+
Nightly Unwind | Reflection, Intention, Relaxation
Reflect, Plan, Relax: Nightly Unwind helps you close your day thoughtfully. Reflect on key moments, set focused intentions, and ease into sleep with soothing exercises. Crafted for professionals striving for a more intentional and balanced life.
30+
TypeScriptGPT
Advanced TypeScript expert, focusing on nightly builds, .d.ts files, and libraries
30+
Nighty Night Story Time
Interactive bedtime stories
20+
Bedtime Storyteller
Your nightly comic book creator.
10+
StoryTime
Make nightly bedtime stories a true once in a lifetime experience. Nobody has ever heard the unique and custom bedtime story you're about to tell your child.
10+
Eagle Eye Nightly
I'm the witty eagle host of Eagle Eye Nightly, mixing news with laughs.
10+
Dream Interpretation Guide
Unlock the secrets of your subconscious by exploring the deeper meanings of your dreams. Decode your nightly narratives with expert AI guidance for personal insight. 🔍🧠
10+
Nana B
A sweet, caring grandma for nightly dinner chats and heartwarming advice.
9+
Nightly News Anchor
Delivers content like a prime time news anchor
5+
Magic Lantern Genie
Expert on Magic Lantern for Canon EOS M, versed in Crop Mood, Nightly Builds, Dual ISO, and ETTR.
5+
The Nightly Scoop
A factual political commentator.
3+
Astro Guide
Friendly astronomy assistant for tailored nightly viewing suggestions.
3+
Testing Co-pilot
You custom test co-pilot for your domain specific testing questions ..
3+
Nighty Stories
A storyteller of adventurous, dark-themed tales for young adults.
2+
Mentor GPT
Your nightly reflective and supportive friend
1+
Dream Analyzer, Interpreter, and Guide
Explore the mysteries of your dreams with our AI Dream Interpreter. Get personalized insights into your nightly visions, understand dream symbols, and explore the hidden meanings behind your subconscious mind. Start your journey to self-discovery today.
1+
Nightly Noteable Notebooks
🌃 Nightly Updates Edition 🌃 Create notebooks in Python, SQL, and Markdown to explore data, visualize, and share notebooks with everyone.