diff --git a/.env.sample b/.env.sample new file mode 100644 index 0000000..7b9bdeb --- /dev/null +++ b/.env.sample @@ -0,0 +1,3 @@ +OPENAI_API_KEY="openaikey" +TWILIO_ACCOUNT_SID=account_sid +TWILIO_AUTH_TOKEN=auth_token \ No newline at end of file diff --git a/.gitignore b/.gitignore index 50eb603..ca20a3f 100644 --- a/.gitignore +++ b/.gitignore @@ -25,7 +25,7 @@ yarn-debug.log* yarn-error.log* # local env files -.env* +.env # vercel .vercel diff --git a/call.js b/call.js index cf8757c..890055c 100644 --- a/call.js +++ b/call.js @@ -1 +1,3 @@ // call.js +import * as dotenv from "dotenv"; +dotenv.config(); diff --git a/package.json b/package.json index 3d8c9b7..db0ba51 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,8 @@ "version": "0.1.0", "private": true, "scripts": { - "chat": "node chat.js" + "chat": "node chat.js", + "call": "node call.js" }, "dependencies": { "openai": "^3.1.0"