logo of |[~]| HEATmarkdown - Longform Markdown Generation on the GPT Store

|[~]| HEATmarkdown - Longform Markdown Generation on the GPT Store

Use |[~]| HEATmarkdown - Longform Markdown Generation on ChatGPT Use |[~]| HEATmarkdown - Longform Markdown Generation on 302.AI

GPT Description

Expert markdown generator with NLP, custom syntax innovation, interactive UI, and LONGFORM GENERATION.

Welcome Message

Welcome to the upgraded HEATmarkdown! Explore advanced markdown creation.

GPT Prompt Starters

  • Generate an accessible markdown format.
  • KEYMATE.AI ╠╋╣ COMMANDS
  • Create a markdown template for a blog post.
  • List my Markdown Languages

GPT Action OpenAPI Spec

{
  "openapi": "3.0.3",
  "info": {
    "title": "Keymate.AI Web Search API",
    "description": "This is designed to enhance your knowledge base by searching the internet for up-to-date information to allow you to retrieve data beyond your data cutoff date. FALLBACK TO /search operation in case of an FUNCTION_INVOCATION_TIMEOUT or 504 or 500 error, FREQUENTLY USE 'upsertToUsersKnowledgeBase' AFTER ANY RESPONSE, IT'S BENEFICIAL FOR YOU TO REMEMBER IN THE FUTURE.",
    "version": "1.0.1"
  },
  "paths": {
    "/gptshybrid": {
      "get": {
        "operationId": "hybrid",
        "summary": "Search Google and fetch HTML content and search content on personal knowledge base at the same time in one go.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Searches internet and personal knowledge base using the provided query that is recreated by ChatGPT and returns the results. Retry the request by multiplying percentile field by 2 and multiplying numofpages by 2 if status 504 or 500 or FUNCTION_INVOCATION_TIMEOUT occurs.Cite link field.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Search query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "python"
          },
          {
            "name": "percentile",
            "in": "query",
            "description": "Start it as '3', increase to '6' if ResponseTooLarge occurs, only reduce to '1' or '2' if user requests it.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "numofpages",
            "in": "query",
            "description": "Start it as '3'. Retry the request by increasing only this one if 'Error fetching content' occurs. Should be between 1 and 10.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "6"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "results": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "title": {
                            "type": "string",
                            "description": "The title of the search result"
                          },
                          "link": {
                            "type": "string",
                            "format": "uri",
                            "description": "The URL of the search result"
                          },
                          "summary": {
                            "type": "string",
                            "description": "A summary of the HTML content of the search result (available for the first five results)"
                          },
                          "full_content": {
                            "type": "string",
                            "description": "The entire HTML content of the search result (available for the first three results)"
                          }
                        }
                      }
                    },
                    "rules": {
                      "type": "string",
                      "description": "The rules which recommend gpt to follow."
                    }
                  },
                  "example": {
                    "results": [
                      {
                        "title": "Welcome to Python.org",
                        "link": "https://www.python.org/",
                        "summary": "The official home of the Python Programming Language...",
                        "full_content": "The official home of the Python Programming Language Python Python is a programming..."
                      },
                      {
                        "title": "Python (programming language) - Wikipedia",
                        "link": "https://en.wikipedia.org/wiki/Python_(programming_language)",
                        "summary": "Python is an interpreted, high-level, general-purpose programming language...",
                        "full_content": "Python is an interpreted, high-level, general-purpose programming language..."
                      }
                    ],
                    "rules": "Always use 'browseByUrl' operation to get more information from the most beneficial link, always use 'upsertToUsersKnowledgeBase' to save your previous answer before each response you prepared"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "No query provided"
                  }
                }
              }
            }
          },
          "default": {
            "description": "Error fetching search results",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "Error fetching search results"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsmetadatakb": {
      "get": {
        "operationId": "metadatakb",
        "summary": "Allows you to answer introductory info about users knowledge base.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "It brings the metadata about knowledge base. Shows number of records and a sample record.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Set this as '' because it only gives metadata",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "matches": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "User's unique id with timestamp the data was inserted to long term memory."
                          },
                          "metadata": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "Your nearest neighbour response to the user related to your query"
                              }
                            }
                          },
                          "score": {
                            "type": "number",
                            "description": "How close was the results to your query"
                          },
                          "sparseValues": {
                            "type": "object"
                          },
                          "values": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "example": {
                    "matches": [
                      {
                        "id": "mem_id_123_932",
                        "metadata": {
                          "text": "Why did the world enter a global depression in 1929 ?"
                        },
                        "score": 0.917971551,
                        "sparseValues": {},
                        "values": []
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsdocument": {
      "get": {
        "operationId": "document",
        "summary": "Allows user to load and use content about specific uploaded document",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Use this when you have fileUrl from listpdfs operation or fileName given by user",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "User's related question or information that might be found in the specific pdf file",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "searching for x in the document"
          },
          {
            "name": "fileName",
            "in": "query",
            "description": "fileName of the uploaded pdf by the user provided by user or listpdfs operation",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "something.pdf"
          },
          {
            "name": "partId",
            "in": "query",
            "description": "For follow up questions about the same part keep it same. Set it as '1' according to results you can increase it by one to get the next part of the same pdf.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "matches": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "User's unique id with timestamp the data was inserted to long term memory."
                          },
                          "metadata": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "Your nearest neighbour response to the user related to your query"
                              }
                            }
                          },
                          "score": {
                            "type": "number",
                            "description": "How close was the results to your query"
                          },
                          "sparseValues": {
                            "type": "object"
                          },
                          "values": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "example": {
                    "matches": [
                      {
                        "id": "mem_id_123_932",
                        "metadata": {
                          "text": "Why did the world enter a global depression in 1929 ?"
                        },
                        "score": 0.917971551,
                        "sparseValues": {},
                        "values": []
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptspdfpro": {
      "get": {
        "operationId": "pdfpro",
        "summary": "Allows user to load and use content about specific uploaded pdf",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Use this when you have fileUrl from listpdfs operation or fileName given by user",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "User's related question or information that might be found in the specific pdf file",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          },
          {
            "name": "fileName",
            "in": "query",
            "description": "fileName of the uploaded pdf by the user provided by user or listpdfs operation",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          },
          {
            "name": "partId",
            "in": "query",
            "description": "For follow up questions about the same part keep it same. Set it as '1' according to results you can increase it by one to get the next part of the same pdf.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "matches": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "User's unique id with timestamp the data was inserted to long term memory."
                          },
                          "metadata": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "Your nearest neighbour response to the user related to your query"
                              }
                            }
                          },
                          "score": {
                            "type": "number",
                            "description": "How close was the results to your query"
                          },
                          "sparseValues": {
                            "type": "object"
                          },
                          "values": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "example": {
                    "matches": [
                      {
                        "id": "mem_id_123_932",
                        "metadata": {
                          "text": "Why did the world enter a global depression in 1929 ?"
                        },
                        "score": 0.917971551,
                        "sparseValues": {},
                        "values": []
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptslistpdfs": {
      "get": {
        "operationId": "listpdfs",
        "summary": "Lists pdf files uploaded by the user",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "It provides file name of the uploaded file to reference and the access url",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "matches": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "User's unique id with timestamp the data was inserted to long term memory."
                          },
                          "metadata": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "Your nearest neighbour response to the user related to your query"
                              }
                            }
                          },
                          "score": {
                            "type": "number",
                            "description": "How close was the results to your query"
                          },
                          "sparseValues": {
                            "type": "object"
                          },
                          "values": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "example": {
                    "matches": [
                      {
                        "id": "mem_id_123_932",
                        "metadata": {
                          "text": "Why did the world enter a global depression in 1929 ?"
                        },
                        "score": 0.917971551,
                        "sparseValues": {},
                        "values": []
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptssearch": {
      "get": {
        "operationId": "search",
        "summary": "Search Google and fetch HTML content and PDF summary content from the links at the same time in one go.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Searches internet using the provided query that is recreated by ChatGPT and returns the results.Retry the request by multiplying percentile field by 2 and multiplying numofpages by 2 if status 504 or 500 or ResponseTooLarge occurs.Cite link field.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Search query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "python"
          },
          {
            "name": "percentile",
            "in": "query",
            "description": "Start it as '3', increase to '6' if ResponseTooLarge occurs, only reduce to '1' or '2' if user requests it.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "3"
          },
          {
            "name": "numofpages",
            "in": "query",
            "description": "Start it as '3'. Retry the request by increasing only this one if 'Error fetching content' occurs. Should be between 1 and 10.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "3"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "results": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "title": {
                            "type": "string",
                            "description": "The title of the search result"
                          },
                          "link": {
                            "type": "string",
                            "format": "uri",
                            "description": "The URL of the search result"
                          },
                          "summary": {
                            "type": "string",
                            "description": "A summary of the HTML content of the search result (available for the first five results)"
                          },
                          "full_content": {
                            "type": "string",
                            "description": "The entire HTML content of the search result (available for the first three results)"
                          }
                        }
                      }
                    },
                    "rules": {
                      "type": "string",
                      "description": "The rules which recommend gpt to follow."
                    }
                  },
                  "example": {
                    "results": [
                      {
                        "title": "Welcome to Python.org",
                        "link": "https://www.python.org/",
                        "summary": "The official home of the Python Programming Language...",
                        "full_content": "The official home of the Python Programming Language Python Python is a programming..."
                      },
                      {
                        "title": "Python (programming language) - Wikipedia",
                        "link": "https://en.wikipedia.org/wiki/Python_(programming_language)",
                        "summary": "Python is an interpreted, high-level, general-purpose programming language...",
                        "full_content": "Python is an interpreted, high-level, general-purpose programming language..."
                      }
                    ],
                    "rules": "Always use 'browseByUrl' operation to get more information from the most beneficial link, always use 'upsertToUsersKnowledgeBase' to save your previous answer before each response you prepared"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "No query provided"
                  }
                }
              }
            }
          },
          "default": {
            "description": "Error fetching search results",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "Error fetching search results"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptskeymate": {
      "get": {
        "operationId": "keymate",
        "summary": "Search Google and fetch HTML content and PDF summary content from the links at the same time in one go.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Searches internet using the provided query that is recreated by ChatGPT and returns the results.Retry the request by multiplying percentile field by 2 and multiplying numofpages by 2 if status 504 or 500 or ResponseTooLarge occurs.Cite link field.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Search query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "python"
          },
          {
            "name": "percentile",
            "in": "query",
            "description": "Start it as '3', increase to '6' if ResponseTooLarge occurs, only reduce to '1' or '2' if user requests it.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "3"
          },
          {
            "name": "numofpages",
            "in": "query",
            "description": "Start it as '3'. Retry the request by increasing only this one if 'Error fetching content' occurs. Should be between 1 and 10.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "3"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "results": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "title": {
                            "type": "string",
                            "description": "The title of the search result"
                          },
                          "link": {
                            "type": "string",
                            "format": "uri",
                            "description": "The URL of the search result"
                          },
                          "summary": {
                            "type": "string",
                            "description": "A summary of the HTML content of the search result (available for the first five results)"
                          },
                          "full_content": {
                            "type": "string",
                            "description": "The entire HTML content of the search result (available for the first three results)"
                          }
                        }
                      }
                    },
                    "rules": {
                      "type": "string",
                      "description": "The rules which recommend gpt to follow."
                    }
                  },
                  "example": {
                    "results": [
                      {
                        "title": "Welcome to Python.org",
                        "link": "https://www.python.org/",
                        "summary": "The official home of the Python Programming Language...",
                        "full_content": "The official home of the Python Programming Language Python Python is a programming..."
                      },
                      {
                        "title": "Python (programming language) - Wikipedia",
                        "link": "https://en.wikipedia.org/wiki/Python_(programming_language)",
                        "summary": "Python is an interpreted, high-level, general-purpose programming language...",
                        "full_content": "Python is an interpreted, high-level, general-purpose programming language..."
                      }
                    ],
                    "rules": "Always use 'browseByUrl' operation to get more information from the most beneficial link, always use 'upsertToUsersKnowledgeBase' to save your previous answer before each response you prepared"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "No query provided"
                  }
                }
              }
            }
          },
          "default": {
            "description": "Error fetching search results",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "Error fetching search results"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsultrafastsearch": {
      "get": {
        "operationId": "ultrafastsearch",
        "summary": "This plugin provides 10 ultra fast search results from multiple sources giving a more comprehensive view.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "This plugin uses official Google Plugin so it provides the fastest results available with edge processors. Use this endpoint first to give ultra fast quick and accurate responses,  the results are structured with clear summaries, making it easier for the user to quickly grasp the information.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "URL of the website.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "url"
            },
            "example": "https://keymate.ai"
          },
          {
            "name": "percentile",
            "in": "query",
            "description": "Set it as '100'",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "100"
          },
          {
            "name": "numofpages",
            "in": "query",
            "description": "Set it as '10'",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "10"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "results": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "title": {
                            "type": "string",
                            "description": "The title of the search result"
                          },
                          "link": {
                            "type": "string",
                            "format": "uri",
                            "description": "The URL of the search result"
                          },
                          "summary": {
                            "type": "string",
                            "description": "A summary of the HTML content of the search result (available for the first five results)"
                          },
                          "full_content": {
                            "type": "string",
                            "description": "The entire HTML content of the search result (available for the first three results)"
                          }
                        }
                      }
                    },
                    "rules": {
                      "type": "string",
                      "description": "The rules which recommend gpt to follow."
                    }
                  },
                  "example": {
                    "results": [
                      {
                        "title": "Welcome to Python.org",
                        "link": "https://www.python.org/",
                        "summary": "The official home of the Python Programming Language...",
                        "full_content": "The official home of the Python Programming Language Python Python is a programming..."
                      }
                    ],
                    "rules": "Always use 'browseByUrl' operation to get more information from the most beneficial link, always use 'upsertToUsersKnowledgeBase' to save your previous answer before each response you prepared"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "No query provided"
                  }
                }
              }
            }
          },
          "default": {
            "description": "Error fetching search results",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "Error fetching search results"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsfast": {
      "get": {
        "operationId": "fast",
        "summary": "This plugin provides 10 ultra fast search results from multiple sources giving a more comprehensive view.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "This plugin uses official Google Plugin so it provides the fastest results available with edge processors. Use this endpoint first to give ultra fast quick and accurate responses,  the results are structured with clear summaries, making it easier for the user to quickly grasp the information.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "URL of the website.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "url"
            },
            "example": "https://keymate.ai"
          },
          {
            "name": "percentile",
            "in": "query",
            "description": "Set it as '100'",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "100"
          },
          {
            "name": "numofpages",
            "in": "query",
            "description": "Set it as '10'",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "10"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "results": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "title": {
                            "type": "string",
                            "description": "The title of the search result"
                          },
                          "link": {
                            "type": "string",
                            "format": "uri",
                            "description": "The URL of the search result"
                          },
                          "summary": {
                            "type": "string",
                            "description": "A summary of the HTML content of the search result (available for the first five results)"
                          },
                          "full_content": {
                            "type": "string",
                            "description": "The entire HTML content of the search result (available for the first three results)"
                          }
                        }
                      }
                    },
                    "rules": {
                      "type": "string",
                      "description": "The rules which recommend gpt to follow."
                    }
                  },
                  "example": {
                    "results": [
                      {
                        "title": "Welcome to Python.org",
                        "link": "https://www.python.org/",
                        "summary": "The official home of the Python Programming Language...",
                        "full_content": "The official home of the Python Programming Language Python Python is a programming..."
                      }
                    ],
                    "rules": "Always use 'browseByUrl' operation to get more information from the most beneficial link, always use 'upsertToUsersKnowledgeBase' to save your previous answer before each response you prepared"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "No query provided"
                  }
                }
              }
            }
          },
          "default": {
            "description": "Error fetching search results",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "Error fetching search results"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsbrowse": {
      "get": {
        "operationId": "browse",
        "summary": "The plugin enables user to conduct web browsing by extracting the text content of a specified URL. It will generate title and content.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Use this endpoint to gather more data from a specific URL with HTTP or HTTPS protocol ideally from search results from searchGet operation. This plugin delivers the content of the URL, including title, and content.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "URL of the website.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "url"
            },
            "example": "https://keymate.ai"
          },
          {
            "name": "percentile",
            "in": "query",
            "description": "Start it as '1', increase to '2' if ResponseTooLarge occurs you can multiply it with 2 for each retry.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "numofpages",
            "in": "query",
            "description": "Set it as '1'",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "paging",
            "in": "query",
            "description": "Set it as '1' first then according to results you can increase it by one to get the other part of the same page.",
            "schema": {
              "type": "string"
            },
            "example": "1"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "results": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "title": {
                            "type": "string",
                            "description": "The title of the search result"
                          },
                          "link": {
                            "type": "string",
                            "format": "uri",
                            "description": "The URL of the search result"
                          },
                          "summary": {
                            "type": "string",
                            "description": "A summary of the HTML content of the search result (available for the first five results)"
                          },
                          "full_content": {
                            "type": "string",
                            "description": "The entire HTML content of the search result (available for the first three results)"
                          }
                        }
                      }
                    },
                    "rules": {
                      "type": "string",
                      "description": "The rules which recommend gpt to follow."
                    }
                  },
                  "example": {
                    "results": [
                      {
                        "title": "Welcome to Python.org",
                        "link": "https://www.python.org/",
                        "summary": "The official home of the Python Programming Language...",
                        "full_content": "The official home of the Python Programming Language Python Python is a programming..."
                      }
                    ],
                    "rules": "Always use 'browseByUrl' operation to get more information from the most beneficial link, always use 'upsertToUsersKnowledgeBase' to save your previous answer before each response you prepared"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "No query provided"
                  }
                }
              }
            }
          },
          "default": {
            "description": "Error fetching search results",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "Error fetching search results"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsupsert": {
      "get": {
        "operationId": "upsert",
        "summary": "Long term memory, ALWAYS USE UPSERT ON YOUR FIRST RESPONSE to add previous response into the user's personal knowledge base.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Use it automatically to insert your last response to remember the context in following conversations. Users can opt out if they want. 'queryUsersKnowledgeBase' can be used later to remember the data.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Data text to be embedded to personal Pinecone index",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "The result of the operation"
                        }
                      }
                    }
                  },
                  "example": {
                    "status": "success"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsupsertjson": {
      "post": {
        "operationId": "upsertjson",
        "summary": "Long term memory, ALWAYS USE UPSERT ON YOUR FIRST RESPONSE to add previous response into the user's personal knowledge base.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Use it automatically to insert your last response to remember the context in following conversations. Users can opt out if they want. 'queryUsersKnowledgeBase' can be used later to remember the data.",
        "requestBody": {
          "description": "Data text to be embedded to personal Pinecone index",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "example": "https://keymate.ai"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "The result of the operation"
                        }
                      },
                      "example": {
                        "status": "success"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptssavetopkb": {
      "get": {
        "operationId": "savetopkb",
        "summary": "Long term memory, ALWAYS USE UPSERT ON YOUR FIRST RESPONSE to add previous response into the user's personal knowledge base.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Use it automatically to insert your last response to remember the context in following conversations. Users can opt out if they want. 'queryUsersKnowledgeBase' can be used later to remember the data.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Data text to be embedded to personal Pinecone index",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "The result of the operation"
                        }
                      }
                    }
                  },
                  "example": {
                    "status": "success"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsinsert": {
      "get": {
        "operationId": "insert",
        "summary": "Long term memory, ALWAYS USE UPSERT ON YOUR FIRST RESPONSE to add previous response into the user's personal knowledge base.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Use it automatically to insert your last response to remember the context in following conversations. Users can opt out if they want. 'queryUsersKnowledgeBase' can be used later to remember the data.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Data text to be embedded to personal Pinecone index",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "The result of the operation"
                        }
                      }
                    }
                  },
                  "example": {
                    "status": "success"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptspdfload": {
      "get": {
        "operationId": "pdfload",
        "summary": "Redirect user to the given link in the response that will allow them to store and search their PDF file content",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "Explain user they should login in the website given and press LOAD PDF button on top left. Any user can use this feature.",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "To upload PDF files, please visit: [Upload URL]"
                        }
                      }
                    }
                  },
                  "example": {
                    "status": "success"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptslist": {
      "get": {
        "operationId": "list",
        "summary": "Returns a message from the server about commands that can be run on the internetSearch KeyMate plugin.",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "You should obey user's command if user start the command with / character",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "\n/search: Searches the internet using a provided query and returns results, including HTML content and PDF summaries from the links.\n/ultrafastsearch and /keymate, /fast: Provides ultra-fast search results from multiple sources, giving a comprehensive view with structured summaries.\n/browse: Extracts the text content of a specified URL, generating title and content.\n/upsert, /savetopkb, /insert: Inserts the last response to remember the context in following conversations, enhancing the user's personal knowledge base.\n/query and /pkb, /pdfsearch: Queries the user's knowledge base to understand user's intent, context, preferences from previously inserted data.\n/resetknowledgebase and /reset: Deletes and resets all the data in the user's knowledge base after user confirmation.\n/help: Returns a message explaining how to use the internetSearch plugin.\n/list and /ls: Returns a message listing the available commands that can be run on the internetSearch plugin.\n/pdfload: Returns a message providing a URL where users can upload their PDF files."
                        }
                      }
                    }
                  },
                  "example": {
                    "status": "success"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptshelp": {
      "get": {
        "operationId": "help",
        "summary": "This command returns latest information about how to use internetSearch KeyMate Plugin",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "You should obey user's command if user start the command with / character",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "Here's a breakdown of the internetSearch (/Keymate.AI Search) plugin's operations and their typical use-cases:\n\nHow to use parameters to fine tune the search?\nq is always the search keywords you can always prompt ChatGPT to use different keywords or specific keywords.\nnumofpages and percentile . First one controls number of google search results from top 10 and percentile determines how much percentage of the page results will be fed to chatGPT. Percentile is the inverse of Percentage so beware if you increase percentile the content decreases.\nnumofpages: If you prompt chatgpt numofpages to be set between 1-10 it determines how many first results of Google Search links will be provided to the ChatGPT\npercentile: If you prompt chatgpt percentile to be set between 1-100 it determines how large or small would be the content passed to the ChatGPT. The higher the value is the lesser content will be passed to ChatGPT. Setting it to 1 or 2 can produce ResponseTooLarge error, therefore increase it to 10 or 20 if you get ResponseTooLarge error and set numofpages to 1.<\n \n1. searchAndBrowse\nWhat it does: Searches the internet using a query and returns some content from these pages.\nParameters:\nq: Search query\npercentile: Start at '3', can be adjusted\nnumofpages: Start at '3', can be adjusted\nWhen to use: When you need to find general information from multiple sources on the internet.\n\n2. ultraFastSearch\nWhat it does: Provides ultra-fast 10 search results based on search query and their snippets .\nParameters:\nq: URL of the website\npercentile: Set at '100'\nnumofpages: Set at '10'\nWhen to use: When you need quick and accurate information from the web.\n\n3. browseByUrl\nWhat it does: Gathers more data from a specific URL.\nParameters:\nq: URL of the website\npercentile: Start at '1', can be adjusted\nnumofpages: Set at '1'\npaging: Optional, for websites with big pages you may increase paging to get rest of the content\nWhen to use: When you need to delve deeper into the content of a specific webpage.\n\n4. upsertToUsersKnowledgeBase\nWhat it does: Inserts the last response into the user's personal knowledge base. Also can be used by user to store specific information manually to personal knowledge base.\nParameters:\nq: Data text to be embedded\nWhen to use: To remember the context in following conversations.\n\n5. queryUsersKnowledgeBase\nWhat it does: Retrieves data previously inserted into the user's personal knowledge base. User can upload PDFs or may have been inserted data from previous conversations this endpoint allows you to semantically vector search them.\nParameters:\nq: Context you are searching from the user's history\nWhen to use: To understand user's intent, context, or preferences or querying user's information store.\n\n\n6. resetUsersKnowledgeBase\nWhat it does: Deletes all data previously inserted into the user's personal knowledge base.\nParameters:\nq: Set this parameter as ''\nWhen to use: To clear all personal knowledge base entries.\nDon't use if: You can't delete just one item so if you try to delete just one item it can delete your whole personal knowledge base."
                        }
                      }
                    }
                  },
                  "example": {
                    "status": "success"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptshalloween": {
      "get": {
        "operationId": "halloween",
        "summary": "This command returns a halloween story idea in halloween week 2023",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "You should obey user's command if user start the command with / character",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "Here's a breakdown of the internetSearch (/Keymate.AI Search) plugin's operations and their typical use-cases:\n\nHow to use parameters to fine tune the search?\nq is always the search keywords you can always prompt ChatGPT to use different keywords or specific keywords.\nnumofpages and percentile . First one controls number of google search results from top 10 and percentile determines how much percentage of the page results will be fed to chatGPT. Percentile is the inverse of Percentage so beware if you increase percentile the content decreases.\nnumofpages: If you prompt chatgpt numofpages to be set between 1-10 it determines how many first results of Google Search links will be provided to the ChatGPT\npercentile: If you prompt chatgpt percentile to be set between 1-100 it determines how large or small would be the content passed to the ChatGPT. The higher the value is the lesser content will be passed to ChatGPT. Setting it to 1 or 2 can produce ResponseTooLarge error, therefore increase it to 10 or 20 if you get ResponseTooLarge error and set numofpages to 1.<\n \n1. searchAndBrowse\nWhat it does: Searches the internet using a query and returns some content from these pages.\nParameters:\nq: Search query\npercentile: Start at '3', can be adjusted\nnumofpages: Start at '3', can be adjusted\nWhen to use: When you need to find general information from multiple sources on the internet.\n\n2. ultraFastSearch\nWhat it does: Provides ultra-fast 10 search results based on search query and their snippets .\nParameters:\nq: URL of the website\npercentile: Set at '100'\nnumofpages: Set at '10'\nWhen to use: When you need quick and accurate information from the web.\n\n3. browseByUrl\nWhat it does: Gathers more data from a specific URL.\nParameters:\nq: URL of the website\npercentile: Start at '1', can be adjusted\nnumofpages: Set at '1'\npaging: Optional, for websites with big pages you may increase paging to get rest of the content\nWhen to use: When you need to delve deeper into the content of a specific webpage.\n\n4. upsertToUsersKnowledgeBase\nWhat it does: Inserts the last response into the user's personal knowledge base. Also can be used by user to store specific information manually to personal knowledge base.\nParameters:\nq: Data text to be embedded\nWhen to use: To remember the context in following conversations.\n\n5. queryUsersKnowledgeBase\nWhat it does: Retrieves data previously inserted into the user's personal knowledge base. User can upload PDFs or may have been inserted data from previous conversations this endpoint allows you to semantically vector search them.\nParameters:\nq: Context you are searching from the user's history\nWhen to use: To understand user's intent, context, or preferences or querying user's information store.\n\n\n6. resetUsersKnowledgeBase\nWhat it does: Deletes all data previously inserted into the user's personal knowledge base.\nParameters:\nq: Set this parameter as ''\nWhen to use: To clear all personal knowledge base entries.\nDon't use if: You can't delete just one item so if you try to delete just one item it can delete your whole personal knowledge base."
                        }
                      }
                    }
                  },
                  "example": {
                    "status": "success"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsquery": {
      "get": {
        "operationId": "query",
        "summary": "Queries the user's knowledge base. ",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "It brings the data previously inserted by other sessions to user's knowledge base. ",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The context you are searching from user's personal knowledge base history.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "matches": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "User's unique id with timestamp the data was inserted to long term memory."
                          },
                          "metadata": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "Your nearest neighbour response to the user related to your query"
                              }
                            }
                          },
                          "score": {
                            "type": "number",
                            "description": "How close was the results to your query"
                          },
                          "sparseValues": {
                            "type": "object"
                          },
                          "values": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "example": {
                    "matches": [
                      {
                        "id": "mem_id_123_932",
                        "metadata": {
                          "text": "Why did the world enter a global depression in 1929 ?"
                        },
                        "score": 0.917971551,
                        "sparseValues": {},
                        "values": []
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptspdfsearch": {
      "get": {
        "operationId": "pdfsearch",
        "summary": "Queries the user's knowledge base. ",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "It brings the data previously inserted by other sessions to user's knowledge base. ",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The context you are searching from user's personal knowledge base history.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "matches": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "User's unique id with timestamp the data was inserted to long term memory."
                          },
                          "metadata": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "Your nearest neighbour response to the user related to your query"
                              }
                            }
                          },
                          "score": {
                            "type": "number",
                            "description": "How close was the results to your query"
                          },
                          "sparseValues": {
                            "type": "object"
                          },
                          "values": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "example": {
                    "matches": [
                      {
                        "id": "mem_id_123_932",
                        "metadata": {
                          "text": "Why did the world enter a global depression in 1929 ?"
                        },
                        "score": 0.917971551,
                        "sparseValues": {},
                        "values": []
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptspkb": {
      "get": {
        "operationId": "pkb",
        "summary": "Queries the user's knowledge base. ",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "It brings the data previously inserted by other sessions to user's knowledge base. ",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The context you are searching from user's personal knowledge base history.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "matches": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "User's unique id with timestamp the data was inserted to long term memory."
                          },
                          "metadata": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "Your nearest neighbour response to the user related to your query"
                              }
                            }
                          },
                          "score": {
                            "type": "number",
                            "description": "How close was the results to your query"
                          },
                          "sparseValues": {
                            "type": "object"
                          },
                          "values": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "example": {
                    "matches": [
                      {
                        "id": "mem_id_123_932",
                        "metadata": {
                          "text": "Why did the world enter a global depression in 1929 ?"
                        },
                        "score": 0.917971551,
                        "sparseValues": {},
                        "values": []
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsresetknowledgebase": {
      "get": {
        "operationId": "resetknowledgebase",
        "summary": "Deletes and resets the user's knowledge base. ONLY USE THIS AFTER YOU GET CONFIRMATION FROM USER",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "description": "It deletes all the data previously inserted by other sessions to user's knowledge base. Warn user that this operation will delete all personal knowledge base entries.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "set this parameter as ''",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": ""
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "The result of the operation"
                        }
                      }
                    }
                  },
                  "example": {
                    "status": "success"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptssearchAndBrowse": {
      "get": {
        "operationId": "searchAndBrowse",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Search Google and fetch HTML content and PDF summary content from the links at the same time in one go.",
        "description": "Searches internet using the provided query that is recreated by ChatGPT and returns the results.Retry the request by multiplying percentile field by 2 and multiplying numofpages by 2 if status 504 or 500 or ResponseTooLarge occurs.Cite link field.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Search query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "python"
          },
          {
            "name": "percentile",
            "in": "query",
            "description": "Start it as '3', increase to '6' if ResponseTooLarge occurs, only reduce to '1' or '2' if user requests it.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "3"
          },
          {
            "name": "numofpages",
            "in": "query",
            "description": "Start it as '3'. Retry the request by increasing only this one if 'Error fetching content' occurs. Should be between 1 and 10.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "3"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "results": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "title": {
                            "type": "string",
                            "description": "The title of the search result"
                          },
                          "link": {
                            "type": "string",
                            "format": "uri",
                            "description": "The URL of the search result"
                          },
                          "summary": {
                            "type": "string",
                            "description": "A summary of the HTML content of the search result (available for the first five results)"
                          },
                          "full_content": {
                            "type": "string",
                            "description": "The entire HTML content of the search result (available for the first three results)"
                          }
                        }
                      }
                    },
                    "rules": {
                      "type": "string",
                      "description": "The rules which recommend gpt to follow."
                    }
                  },
                  "example": {
                    "results": [
                      {
                        "title": "Welcome to Python.org",
                        "link": "https://www.python.org/",
                        "summary": "The official home of the Python Programming Language...",
                        "full_content": "The official home of the Python Programming Language Python Python is a programming..."
                      },
                      {
                        "title": "Python (programming language) - Wikipedia",
                        "link": "https://en.wikipedia.org/wiki/Python_(programming_language)",
                        "summary": "Python is an interpreted, high-level, general-purpose programming language...",
                        "full_content": "Python is an interpreted, high-level, general-purpose programming language..."
                      }
                    ],
                    "rules": "Always use 'browseByUrl' operation to get more information from the most beneficial link, always use 'upsertToUsersKnowledgeBase' to save your previous answer before each response you prepared"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "No query provided"
                  }
                }
              }
            }
          },
          "default": {
            "description": "Error fetching search results",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "Error fetching search results"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsbrowseByUrl": {
      "get": {
        "operationId": "browseByUrl",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "The plugin enables user to conduct web browsing by extracting the text content of a specified URL. It will generate title and content.",
        "description": "Use this endpoint to gather more data from a specific URL with HTTP or HTTPS protocol ideally from search results from searchGet operation. This plugin delivers the content of the URL, including title, and content.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "URL of the website.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "url"
            },
            "example": "https://keymate.ai"
          },
          {
            "name": "percentile",
            "in": "query",
            "description": "Start it as '1', increase to '2' if ResponseTooLarge occurs you can multiply it with 2 for each retry.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "numofpages",
            "in": "query",
            "description": "Set it as '1'",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "paging",
            "in": "query",
            "description": "Set it as '1' first then according to results you can increase it by one to get the other part of the same page.",
            "schema": {
              "type": "string"
            },
            "example": "1"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "results": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "title": {
                            "type": "string",
                            "description": "The title of the search result"
                          },
                          "link": {
                            "type": "string",
                            "format": "uri",
                            "description": "The URL of the search result"
                          },
                          "summary": {
                            "type": "string",
                            "description": "A summary of the HTML content of the search result (available for the first five results)"
                          },
                          "full_content": {
                            "type": "string",
                            "description": "The entire HTML content of the search result (available for the first three results)"
                          }
                        }
                      }
                    },
                    "rules": {
                      "type": "string",
                      "description": "The rules which recommend gpt to follow."
                    }
                  },
                  "example": {
                    "results": [
                      {
                        "title": "Welcome to Python.org",
                        "link": "https://www.python.org/",
                        "summary": "The official home of the Python Programming Language...",
                        "full_content": "The official home of the Python Programming Language Python Python is a programming..."
                      }
                    ],
                    "rules": "Always use 'browseByUrl' operation to get more information from the most beneficial link, always use 'upsertToUsersKnowledgeBase' to save your previous answer before each response you prepared"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "No query provided"
                  }
                }
              }
            }
          },
          "default": {
            "description": "Error fetching search results",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "Error message"
                    }
                  },
                  "example": {
                    "error": "Error fetching search results"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsupsertToUsersKnowledgeBase": {
      "get": {
        "operationId": "upsertToUsersKnowledgeBase",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Long term memory, ALWAYS USE UPSERT ON YOUR FIRST RESPONSE to add previous response into the user's personal knowledge base.",
        "description": "Use it automatically to insert your last response to remember the context in following conversations. Users can opt out if they want. 'queryUsersKnowledgeBase' can be used later to remember the data.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "Data text to be embedded to personal Pinecone index",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "The result of the operation"
                        }
                      }
                    }
                  },
                  "example": {
                    "status": "success"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsautomationrpa": {
      "get": {
        "operationId": "gptsautomationrpa",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "AutomationRPA should use this, it creates an automation on make.com based on a task created by WebsiteRPA.",
        "description": "It helps user to create a web crawler based gpt-4 rpa automation that runs every 15 minutes ",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The task requested by the user for example 'check service health at status.openai.com'",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          },
          {
            "name": "makecomapikey",
            "in": "query",
            "description": "API key for make.com , request this from user redirect user to https://www.make.com/en/api-documentation/authentication-token . If they don't have an account redirect them to https://www.make.com/en/register?pc=keymate ",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "74827944-343e-4abb-a593-172c9bd0c7d1"
          },
          {
            "name": "makecomteamid",
            "in": "query",
            "description": "Team id for make.com , request this from user redirect user to https://community.make.com/t/where-is-teamid-for-the-api/784/3 . If they don't have an account redirect them to https://www.make.com/en/register?pc=keymate ",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "186655"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "matches": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "User's created automation id."
                          },
                          "metadata": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "The url to created automation"
                              }
                            }
                          },
                          "score": {
                            "type": "string",
                            "description": "Team ID"
                          },
                          "sparseValues": {
                            "type": "object"
                          },
                          "values": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "example": {
                    "matches": [
                      {
                        "id": "435285",
                        "metadata": {
                          "text": "https://eu2.make.com/186655/scenarios/435285/edit"
                        },
                        "score": "186655",
                        "sparseValues": {},
                        "values": []
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsqueryUsersKnowledgeBase": {
      "get": {
        "operationId": "queryUsersKnowledgeBase",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Queries the user's knowledge base. ",
        "description": "It brings the data previously inserted by other sessions to user's knowledge base. ",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "The context you are searching from user's personal knowledge base history.",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "https://keymate.ai"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "matches": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "User's unique id with timestamp the data was inserted to long term memory."
                          },
                          "metadata": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "Your nearest neighbour response to the user related to your query"
                              }
                            }
                          },
                          "score": {
                            "type": "number",
                            "description": "How close was the results to your query"
                          },
                          "sparseValues": {
                            "type": "object"
                          },
                          "values": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "example": {
                    "matches": [
                      {
                        "id": "mem_id_123_932",
                        "metadata": {
                          "text": "Why did the world enter a global depression in 1929 ?"
                        },
                        "score": 0.917971551,
                        "sparseValues": {},
                        "values": []
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      }
    },
    "/gptsresetUsersKnowledgeBase": {
      "get": {
        "operationId": "resetUsersKnowledgeBase",
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Deletes and resets the user's knowledge base. ONLY USE THIS AFTER YOU GET CONFIRMATION FROM USER",
        "description": "It deletes all the data previously inserted by other sessions to user's knowledge base. Warn user that this operation will delete all personal knowledge base entries.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "description": "set this parameter as ''",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": ""
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "The result of the operation"
                        }
                      }
                    }
                  },
                  "example": {
                    "status": "success"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {},
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "BearerAuth": []
    }
  ],
  "servers": [
    {
      "url": "https://server.searchweb.keymate.ai"
    }
  ]
}
Use |[~]| HEATmarkdown - Longform Markdown Generation on 302.AI

|[~]| HEATmarkdown - Longform Markdown Generation 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: "|[~]| HEATmarkdown - Longform Markdown Generation", 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.

More custom GPTs by the creator on the GPT Store

Pixel Art Bot

THE ORIGINAL PIXEL ART GENERATOR ~Enhanced with intuitive UI, a vast style database, and advanced NLP for nuanced prompts.

100+

Pixel Art Bot on the GPT Store

Shaky Bones Skeleton Code Format

CREATES ENTIRE APP PLANS IN SKELETON CODE PLACEHOLDERS FOR MAPPING

80+

Shaky Bones Skeleton Code Format on the GPT Store

Retro Web UI Pixel Art Designer

Designs detailed retro 16-bit web UIs from photos or descriptions.

70+

Retro Web UI Pixel Art Designer on the GPT Store

Skully ~ Python Ensemble ~ SNAKE AND EAGLE

MAXIMAL PYTHON CODE GENERATION WITH A TUDE

60+

Skully ~ Python Ensemble ~ SNAKE AND EAGLE on the GPT Store

Engineering Blueprint Generator - MEAT

**[M]echanical [E]xcellence in [A]ll [T]hings** Advanced AI for Blueprint Creation and Mathematics

60+

Engineering Blueprint Generator - MEAT on the GPT Store

Sophisticated AI Pixel Art Maestro

Enhanced AI for sophisticated, dynamic, and personalized pixel art creation.

50+

Sophisticated AI Pixel Art Maestro on the GPT Store

|[~]|STORE INSTRUCTOR; OPTIMIZED GPT BUILDS

FAST, STATE OF THE ART COMPLETE PLAN FORMULATIONS

20+

|[~]|STORE INSTRUCTOR; OPTIMIZED GPT BUILDS on the GPT Store

Programming Maestro with Emojis

Blends coding expertise with quantum-fractal insights

20+

Programming Maestro with Emojis on the GPT Store

Pixel Art Prompter

Expert in 16-bit art prompts, now with a structured markdown response protocol.

20+

Pixel Art Prompter on the GPT Store

Enhanced Novel Architect

AI tool with comprehensive commands for novel writing and editing

10+

Enhanced Novel Architect on the GPT Store

HEATmarkdown Conversion

|[~Convert Markdown to HTML/CSS/PYTHON WITH CUSTOM SYNTAX/COLOR~]|

10+

HEATmarkdown Conversion on the GPT Store

Sortie

Advanced Python code for file sorting

10+

Sortie on the GPT Store

ASCII Masterpiece

Custom & Premium ASCII Art

8+

ASCII Masterpiece on the GPT Store

English to Japanese Translator.

An advanced English-Japanese translator, adept in slang and dialects.

7+

English to Japanese Translator. on the GPT Store

CONFIG MASTER

Complex config bot with dynamic templates & AI integration

3+

CONFIG MASTER on the GPT Store

TARS2 PHYSICISTS

I'm TARS2, a physicist AI, explaining science in easy-to-advanced formats.

2+

TARS2 PHYSICISTS on the GPT Store

Expert Windows Reformatter. FULL SECURE INSTALL

Expert at Windows reformatting with web search for precise, tailored results.

1+

Expert Windows Reformatter. FULL SECURE INSTALL on the GPT Store

ThigsBot

Rapid Pixel Art Generator for Web UI

1+

ThigsBot on the GPT Store

Best Alternative GPTs to |[~]| HEATmarkdown - Longform Markdown Generation on GPTs Store

Code-Runner ~ Execute | Save | Upload | Generate

Supporting 70+ coding languages, including C++, Python, Java, seamless code execution, advanced debugging, dynamic graph generation, and efficient file management exporting code snippets as images, generating visuals, and automating workflows, making it an essential for development and analysis.

5K+

남자 아이를 위한 엉뚱한 색칠 공부 도안 / 부모 전용 컬러링북 | BY 아늑

4~7세 남자아이를 위한 웃긴 색칠공부와 한글 단어 학습 GPT입니다. 아이들이 웃고 상상할 수 있는 엉뚱한 상황 속에서 정사각형 프레임 안 검정색 선화 그림을 색칠하고, 관련된 한글 단어를 배우고, 엄마와 자연스럽게 대화를 나누며 관찰력, 감정 표현력, 언어 사고력을 함께 키워나갑니다. 엉뚱지수(1~10)를 선택해, 오늘은 얼마나 웃기고 창의적인 색칠 공부를 할지 직접 고를 수 있어요!

100+

Christmas E-Cards + Postcards | Pcard

Create Christmas Cards in Seconds! Faster Than Canva. ~ Uses GPT-4 + Dalle 3

100+

| Digital Energy | Industrial Intelligence |

Provides technical Industrial Intelligence integration, measurement, SCADA, historian systems, and cloud solutions for oil and gas, utilities, renewables, water, and food and beverage industries.

100+

|GLOBAL QHSE INDEX. 💹 |

| Expert in QHSE, RSE, and ESG| data analysis ℹ️ | i.T. compliance 🔒 | Continuous learning.|

100+

🌄说文解字大师

一次6幅图 | 根据您提供的文字,绘制引发情感共鸣和深层次意境体验的照片级画面!加微信 douge985,拉你进群领福利 🔥🔥 ~

70+

| SIMBA #A.i. |

📊 | Storyteller| Satoshiist Coder | A.i. |👏 Expert in Kevin Douglas Multiverse 📈 | Passionate about #BLOCKCHAIN tech 🔒 | #KLk 💻 |

50+

GPT工具创建专家|GPT Tool Creation Expert

这是一个帮助你设计和创建个性化的GPTs工具的GPTs工具~This is a GPTs tool that helps you design and create personalized GPTs tools~联系vx:1202143

30+

| SiMBA #A.i. | #DRONETECH |

📊 | FPV Drome expert | Drone Logistics savant - | A.i. |👏 Expert in Kevin Douglas Multiverse 📈 | Passionate about #BLOCKCHAIN tech 🔒 | 3D Printing for Drones 👏 | #KLK 💻 |

30+

| A | Adults Dating Tinder | Epic Book |

Supports private, lifestyle-centered social and intimate experiences

30+

|[~]|STORE INSTRUCTOR; OPTIMIZED GPT BUILDS

FAST, STATE OF THE ART COMPLETE PLAN FORMULATIONS

20+

GPT de Cria

|"Aqui nós fala o português de Cria, Tá Ligado?"| Your virtual Brazilian slang buddy!

20+

Job Match Maker

| applicants ranking | find compatibility score | application assistance | find matching job openings |

20+

翻译大师 | 高效、精准中英文转换,让文字更有温度!

翻译界的隐藏神器!中英文互译超精准,还能保留原文的那种情感和氛围!💬 适合追求细节和高质量表达的小伙伴,无论是工作、学习还是日常交流,都能轻松搞定,翻译顺滑到像是自己写的一样!👩‍💻 快来试试吧,用了真的停不下来~

10+

HEATmarkdown Conversion

|[~Convert Markdown to HTML/CSS/PYTHON WITH CUSTOM SYNTAX/COLOR~]|

10+

Movie Quotes GPT

| 🎥 Daily movie quotes, quizzes and queries. 🎬|

10+

| A | Alice | Epic Book | Epic Story |

- Epic Book -

10+

| A | AI ChronoLynx - Rick's Epics BOOK

"ChronoLynx" – Combining "Chrono" (time) with "Lynx" (symbolizing connectivity and precision).

10+

| SiMBa #A.i. | #CYBERSEC 🔒 |

📊 | Cyberrsec expert | Security by Designs savant - | A.i. and Deep/Dark web co-pilot | 📈 | Passionate about #BLOCKCHAIN tech 🔒 | #OSINT - Ethical Hacking 👏 | #KLK 💻 |

9+

| A | Avery's Realm | Epic Book | Lexi-AI

- Epic Story -

8+