├── .env.development ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── nodemon.json ├── package.json ├── src ├── index.ts ├── llms │ ├── llm_azure_openai.ts │ ├── llm_azure_openai_func_call.ts │ ├── llm_azure_openai_func_call_end_call.ts │ ├── llm_dummy_mock.ts │ ├── llm_openai.ts │ ├── llm_openai_func_call.ts │ └── llm_openrouter.ts ├── server.ts └── types.ts └── tsconfig.json /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/.env.development -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/README.md -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/llms/llm_azure_openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/src/llms/llm_azure_openai.ts -------------------------------------------------------------------------------- /src/llms/llm_azure_openai_func_call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/src/llms/llm_azure_openai_func_call.ts -------------------------------------------------------------------------------- /src/llms/llm_azure_openai_func_call_end_call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/src/llms/llm_azure_openai_func_call_end_call.ts -------------------------------------------------------------------------------- /src/llms/llm_dummy_mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/src/llms/llm_dummy_mock.ts -------------------------------------------------------------------------------- /src/llms/llm_openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/src/llms/llm_openai.ts -------------------------------------------------------------------------------- /src/llms/llm_openai_func_call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/src/llms/llm_openai_func_call.ts -------------------------------------------------------------------------------- /src/llms/llm_openrouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/src/llms/llm_openrouter.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-custom-llm-node-demo/HEAD/tsconfig.json --------------------------------------------------------------------------------