Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
import process from "node:process";
import { gpt3 } from "https://esm.town/v/patrickjm/gpt3?v=4";
export let untitled2983099 = default (params) => {
return gpt3({
openAiKey: process.env.openai_key,
prompt: params.question,
})
.then((result) => result);
}
October 23, 2023