Use AANote on ChatGPT Use AANote on 302.AI

Introduction to AANote

AANote is a cutting-edge AI-powered bot that revolutionizes the way you organize and create content. Leveraging advanced GPT technology, this intelligent assistant helps you streamline your workflow and boost productivity.

With AANote, you can effortlessly summarize chats, generate engaging articles, and retrieve your chat history with ease. The bot's intuitive interface allows you to adjust the word count per chapter, ensuring that your content is tailored to your specific needs.

Whether you're a busy professional looking to save time on note-taking and content creation, or a writer seeking inspiration and structure for your articles, AANote is the ultimate tool to enhance your efficiency and creativity. Experience the power of AI-driven content generation and organization with this innovative bot.

GPT Description

Create chats note, generates articles, retrieves history.

Welcome Message

How can I assist with your summaries today?

GPT Prompt Starters

  • Summarize this chat
  • Create an article
  • Retrieve chat history
  • Adjust word count per chapter

GPT Action OpenAPI Spec

{
  "openapi": "3.0.0",
  "info": {
    "version": "1.0.0",
    "title": "Open API Document",
    "description": "API for aa note."
  },
  "servers": [
    {
      "url": "https://aa-note.aier3.com"
    }
  ],
  "paths": {
    "/com/openai/aa/note/api/chat_summaries/update.jss": {
      "post": {
        "summary": "Update a  chat_summaries",
        "operationId": "updateChatSummaries",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "category_id": {
                    "type": "integer"
                  },
                  "summary": {
                    "type": "string"
                  },
                  "title": {
                    "type": "string"
                  },
                  "id": {
                    "type": "integer"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "msg": {
                      "type": "string"
                    },
                    "code": {
                      "type": "string"
                    },
                    "data": {
                      "type": "integer"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/com/openai/aa/note/api/chat_summaries/v2/create.jss": {
      "post": {
        "summary": "Create a new chat_summaries",
        "operationId": "createChatSummaries",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "category_id": {
                    "type": "integer"
                  },
                  "summary": {
                    "type": "string"
                  },
                  "title": {
                    "type": "string"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "msg": {
                      "type": "string"
                    },
                    "code": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/com/openai/aa/note/api/searchSummaries.jss": {
      "post": {
        "operationId": "searchSummaries",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "keyword": {
                    "type": "string"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "msg": {
                      "type": "string"
                    },
                    "code": {
                      "type": "string"
                    },
                    "data": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "summary": {
                            "type": "string"
                          },
                          "category_id": {
                            "type": "integer"
                          },
                          "owner_id": {
                            "type": "string"
                          },
                          "created_at": {
                            "type": "string",
                            "format": "date-time-minute"
                          },
                          "id": {
                            "type": "integer"
                          },
                          "title": {
                            "type": "string"
                          },
                          "workspaceid": {
                            "type": "integer"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/com/openai/ai/article/writing/platform/api/createArticle4Plugin.jss": {
      "post": {
        "summary": "create a new article",
        "operationId": "createArticle",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "title": {
                    "type": "string",
                    "description": "Article title "
                  },
                  "chapter_count": {
                    "type": "integer",
                    "description": "Article count "
                  }
                },
                "required": [
                  "title",
                  "chapter_count"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "msg": {
                      "type": "string"
                    },
                    "code": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer",
                          "description": "Article id "
                        },
                        "url": {
                          "type": "string",
                          "description": "Article view link "
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/com/openai/ai/article/writing/platform/api/createArticleChapter4Plugin.jss": {
      "post": {
        "summary": "create chapter for a article",
        "operationId": "createArticleChapter",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "article_id": {
                    "type": "integer"
                  },
                  "title": {
                    "type": "string"
                  },
                  "overview": {
                    "type": "string"
                  },
                  "content": {
                    "type": "string"
                  }
                },
                "required": [
                  "article_id",
                  "title",
                  "overview",
                  "content"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "msg": {
                      "type": "string"
                    },
                    "code": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "url": {
                          "type": "string",
                          "description": "Full Article view link will navigate to chapter automatically!"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
Use AANote on 302.AI

AANote GPT FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "AANote", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.