Skip to content

Instantly share code, notes, and snippets.

View Mrdoug's full-sized avatar
🎯
Focusing

Douglas Borges Alves Mrdoug

🎯
Focusing
View GitHub Profile
@Mrdoug
Mrdoug / gpt.js
Created June 22, 2023 13:59 — forked from sergiolopes/gpt.js
Use GPT no Google Spreadcheets com essa função App Script
const SECRET_KEY = "YOUR API KEY";
const MAX_TOKENS = 3000;
const TEMPERATURE = 0.9;
function EMAILALUNO(aluno, nota) {
const url = "https://api.openai.com/v1/chat/completions";
const payload = {
model: 'gpt-3.5-turbo',
messages: [
{ role: "system", content: "Crie um parágrafo de incentivo para um aluno que recebeu uma nota na prova. Vou passar o nome do aluno e a nota." },