Comparing version 1.0.2 to 1.0.4
@@ -15,3 +15,3 @@ #!/usr/bin/env node | ||
const completion = await getCompletion_1.getCompletion(prompt); | ||
console.log(completion); | ||
console.log(`\n${completion}`); | ||
})().catch((error) => { | ||
@@ -18,0 +18,0 @@ throw error; |
{ | ||
"name": "gpt3", | ||
"version": "1.0.2", | ||
"version": "1.0.4", | ||
"description": "A simple CLI tool to interface with OpenAI's beta API", | ||
@@ -12,3 +12,4 @@ "main": "index.js", | ||
"build": "tsc", | ||
"lint": "eslint . --ext .ts,.js,.md -c .eslintrc.json --fix" | ||
"lint": "eslint . --ext .ts,.js,.md -c .eslintrc.json --fix", | ||
"prepublishOnly": "npm run build" | ||
}, | ||
@@ -19,11 +20,3 @@ "repository": { | ||
}, | ||
"keywords": [ | ||
"gpt", | ||
"ai", | ||
"machine", | ||
"learning", | ||
"agi", | ||
"completion", | ||
"text" | ||
], | ||
"keywords": ["gpt", "ai", "machine", "learning", "agi", "completion", "text"], | ||
"author": "Michael Poteat <me@mpote.at>", | ||
@@ -30,0 +23,0 @@ "license": "MIT", |
6485