├── .gitignore ├── README.md ├── getCurrentTime.js ├── index.js ├── openai-function-calling-tools-test.js ├── package.json └── timeToSport.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannLai/openai-function-calling-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /getCurrentTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannLai/openai-function-calling-nodejs/HEAD/getCurrentTime.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannLai/openai-function-calling-nodejs/HEAD/index.js -------------------------------------------------------------------------------- /openai-function-calling-tools-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannLai/openai-function-calling-nodejs/HEAD/openai-function-calling-tools-test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannLai/openai-function-calling-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /timeToSport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannLai/openai-function-calling-nodejs/HEAD/timeToSport.js --------------------------------------------------------------------------------