feat: setup env and call.js

This commit is contained in:
Rushil Umaretiya 2023-03-04 15:45:16 -05:00
parent f12d0065ba
commit 0004a22d3f
4 changed files with 8 additions and 2 deletions

3
.env.sample Normal file
View File

@ -0,0 +1,3 @@
OPENAI_API_KEY="openaikey"
TWILIO_ACCOUNT_SID=account_sid
TWILIO_AUTH_TOKEN=auth_token

2
.gitignore vendored
View File

@ -25,7 +25,7 @@ yarn-debug.log*
yarn-error.log* yarn-error.log*
# local env files # local env files
.env* .env
# vercel # vercel
.vercel .vercel

View File

@ -1 +1,3 @@
// call.js // call.js
import * as dotenv from "dotenv";
dotenv.config();

View File

@ -4,7 +4,8 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
"chat": "node chat.js" "chat": "node chat.js",
"call": "node call.js"
}, },
"dependencies": { "dependencies": {
"openai": "^3.1.0" "openai": "^3.1.0"