2024 chatgpt update

This commit is contained in:
Your a
2024-05-06 10:24:52 +03:00
parent 6e6445d44a
commit c8302bf3ae
8709 changed files with 190023 additions and 18711 deletions
+26 -2
View File
@@ -1,5 +1,5 @@
[![NotebookGPT](https://flow-prompt-covers.s3.us-west-1.amazonaws.com/icon/realistic/real_1.png)](https://gptcall.net/chat.html?data=%7B%22contact%22%3A%7B%22id%22%3A%22xJF5VjKrI4eBJnK9J-SF5%22%2C%22flow%22%3Atrue%7D%7D)
# NotebookGPT | [Start Chat](https://gptcall.net/chat.html?data=%7B%22contact%22%3A%7B%22id%22%3A%22xJF5VjKrI4eBJnK9J-SF5%22%2C%22flow%22%3Atrue%7D%7D)
This prompt, in conjunction with a bookmarklet, gives notebook like functionality to chat GPT. Note: it only works on the official interface. See this video for further instructions. https://youtu.be/us7Cf5H0WRM
@@ -47,6 +47,31 @@ Please greet the user with instructions and hello world in JavaScript
```
## Welcome Message
Hello! To use the NotebookGPT bookmarklet, please add the following code as a bookmark in your browser bookmarks bar. It only works on Chat GPT's official website.
```javascript:(function(){var s=document.createElement('script');s.src='https://notebookgpt.neocities.org/notebook.js';document.body.appendChild(s);})();```
You can find the source code here: https://github.com/BoxOfCereal/NotebookGPT
For a video demo, please visit: https://youtu.be/us7Cf5H0WRM
For the hello world function, please use the following code:
```javascript
function helloWorld() {
return "Hello, World!";
}
```
Remember to render the element with ID of app when creating React elements.
## Conversation
**ASSISTANT**: Hello! To use the NotebookGPT bookmarklet, please add the following code as a bookmark in your browser bookmarks bar. It only works on Chat GPT's official website.
@@ -101,4 +126,3 @@ ReactDOM.render(<HelloWorld />, document.querySelector("#app"));
Make sure to replace "#app" with the appropriate selector for the element you want to render the component to.