├── .env ├── .env.template ├── .gitignore ├── Procfile ├── README.md ├── assistant.json ├── doc ├── get_vapi_key_1.png ├── get_vapi_key_2.png ├── ngrok.png ├── talk_button.png ├── vf_api_key.png ├── vf_import.png └── vf_project_id.png ├── jsconfig.json ├── package.json ├── src ├── cli.js ├── handlers │ └── custom-llm │ │ ├── dmapi.js │ │ └── index.js ├── index.js └── router.js └── vapi_agent.vf /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/.env -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm start 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/README.md -------------------------------------------------------------------------------- /assistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/assistant.json -------------------------------------------------------------------------------- /doc/get_vapi_key_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/doc/get_vapi_key_1.png -------------------------------------------------------------------------------- /doc/get_vapi_key_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/doc/get_vapi_key_2.png -------------------------------------------------------------------------------- /doc/ngrok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/doc/ngrok.png -------------------------------------------------------------------------------- /doc/talk_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/doc/talk_button.png -------------------------------------------------------------------------------- /doc/vf_api_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/doc/vf_api_key.png -------------------------------------------------------------------------------- /doc/vf_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/doc/vf_import.png -------------------------------------------------------------------------------- /doc/vf_project_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/doc/vf_project_id.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/handlers/custom-llm/dmapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/src/handlers/custom-llm/dmapi.js -------------------------------------------------------------------------------- /src/handlers/custom-llm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/src/handlers/custom-llm/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/src/index.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/src/router.js -------------------------------------------------------------------------------- /vapi_agent.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/vf-vapi/HEAD/vapi_agent.vf --------------------------------------------------------------------------------