Skip to content

Instantly share code, notes, and snippets.

@Bekz7
Bekz7 / encoder.js
Created May 1, 2023 08:30 — forked from iceener/encoder.js
gpt-3-encoder-netlify-function.js
const { encode } = require('@nem035/gpt-3-encoder')
exports.handler = async (event, context) => {
if (event.httpMethod === 'POST') {
try {
const payload = JSON.parse(event.body);
const text = payload.text;
return {