Files
ekzamen-samokorrektiruyusch…/package.json
T

25 lines
550 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "self-correcting-agent",
"version": "1.0.0",
"description": "A simple Node.js implementation of a selfcorrecting agent that uses the OpenAI API to review and improve its own responses.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest"
},
"keywords": [
"openai",
"self-correcting",
"agent",
"nodejs"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5",
"openai": "^4.20.0"
},
"devDependencies": {
"jest": "^29.7.0"
}
}