cli-ai
Version:
A command line interface client for interacting with OpenAI's GPT3
14 lines • 368 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.openai_api_options = void 0;
exports.openai_api_options = {
model: "text-davinci-003",
temperature: 0.9,
max_tokens: 300,
top_p: 1,
best_of: 1,
frequency_penalty: 0,
presence_penalty: 0,
stop: [" Human:", " AI:"],
};
//# sourceMappingURL=openai.js.map