mirror of
https://github.com/vitalityAI/therapist.git
synced 2025-04-06 04:50:16 -04:00
feat: setup env and call.js
This commit is contained in:
parent
f12d0065ba
commit
0004a22d3f
3
.env.sample
Normal file
3
.env.sample
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
OPENAI_API_KEY="openaikey"
|
||||||
|
TWILIO_ACCOUNT_SID=account_sid
|
||||||
|
TWILIO_AUTH_TOKEN=auth_token
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -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
|
||||||
|
|
2
call.js
2
call.js
|
@ -1 +1,3 @@
|
||||||
// call.js
|
// call.js
|
||||||
|
import * as dotenv from "dotenv";
|
||||||
|
dotenv.config();
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user