1
0
Fork 0
GPT4FREE/cocalc/readme.md
2023-04-27 16:20:50 -07:00

515 B

Example: cocalc

# import library
import cocalc

cocalc.Completion.create(prompt="How are you!", cookieInput="cookieinput") ## Tutorial 
// input this into ur developer tools console and the exact response u get from this u put into ur cookieInput!
var cookies = document.cookie.split("; ");
var cookieString = "";
for (var i = 0; i < cookies.length; i++) {
  cookieString += cookies[i] + "; ";
}
console.log(cookieString);