├── .env.example ├── .gitignore ├── FunctionChain ├── .gitignore ├── README.md ├── entrypoint.js ├── index.js ├── openAIFunctions │ ├── codeInterpreter.js │ ├── finance │ │ ├── fetchCryptoPrice.js │ │ ├── getAlphaVantageCompanyOverview.js │ │ └── getAlphaVantageIntraday.js │ ├── huggingface │ │ └── huggingFaceImageClassification.js │ ├── pinecone │ │ ├── askPinecone.js │ │ ├── createPinecone.js │ │ └── updatePinecone.js │ ├── unix │ │ ├── openApp.js │ │ └── takeScreenshot.js │ ├── weather │ │ └── getVisualCrossingWeatherForecast.js │ └── wikipedia.js ├── package-lock.json └── package.json ├── README.md ├── examples ├── all-examples.js ├── alpha-vantage-examples.js ├── alpha-vantage-intraday.js ├── hugging-face-example.js ├── no-api-key-examples.js ├── nodejs-code-interpreter.js ├── pinecone-example.js ├── unix-example.js ├── weather-visual-crossing-example.js └── wikipedia-example.js ├── index.js └── package.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/.gitignore -------------------------------------------------------------------------------- /FunctionChain/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | output 3 | .env 4 | package-lock.json -------------------------------------------------------------------------------- /FunctionChain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/README.md -------------------------------------------------------------------------------- /FunctionChain/entrypoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/entrypoint.js -------------------------------------------------------------------------------- /FunctionChain/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/index.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/codeInterpreter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/codeInterpreter.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/finance/fetchCryptoPrice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/finance/fetchCryptoPrice.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/finance/getAlphaVantageCompanyOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/finance/getAlphaVantageCompanyOverview.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/finance/getAlphaVantageIntraday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/finance/getAlphaVantageIntraday.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/huggingface/huggingFaceImageClassification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/huggingface/huggingFaceImageClassification.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/pinecone/askPinecone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/pinecone/askPinecone.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/pinecone/createPinecone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/pinecone/createPinecone.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/pinecone/updatePinecone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/pinecone/updatePinecone.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/unix/openApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/unix/openApp.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/unix/takeScreenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/unix/takeScreenshot.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/weather/getVisualCrossingWeatherForecast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/weather/getVisualCrossingWeatherForecast.js -------------------------------------------------------------------------------- /FunctionChain/openAIFunctions/wikipedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/openAIFunctions/wikipedia.js -------------------------------------------------------------------------------- /FunctionChain/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/package-lock.json -------------------------------------------------------------------------------- /FunctionChain/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/FunctionChain/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/README.md -------------------------------------------------------------------------------- /examples/all-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/examples/all-examples.js -------------------------------------------------------------------------------- /examples/alpha-vantage-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/examples/alpha-vantage-examples.js -------------------------------------------------------------------------------- /examples/alpha-vantage-intraday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/examples/alpha-vantage-intraday.js -------------------------------------------------------------------------------- /examples/hugging-face-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/examples/hugging-face-example.js -------------------------------------------------------------------------------- /examples/no-api-key-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/examples/no-api-key-examples.js -------------------------------------------------------------------------------- /examples/nodejs-code-interpreter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/examples/nodejs-code-interpreter.js -------------------------------------------------------------------------------- /examples/pinecone-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/examples/pinecone-example.js -------------------------------------------------------------------------------- /examples/unix-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/examples/unix-example.js -------------------------------------------------------------------------------- /examples/weather-visual-crossing-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/examples/weather-visual-crossing-example.js -------------------------------------------------------------------------------- /examples/wikipedia-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/examples/wikipedia-example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersdigest/function-chain/HEAD/package.json --------------------------------------------------------------------------------