├── .dev.vars.example ├── .editorconfig ├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── public ├── index.html ├── script.js └── vendor │ └── README.md ├── src └── index.ts ├── test ├── index.spec.ts └── tsconfig.json ├── tsconfig.json ├── vitest.config.mts ├── worker-configuration.d.ts └── wrangler.toml /.dev.vars.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY="YOUR KEY" 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/public/index.html -------------------------------------------------------------------------------- /public/script.js: -------------------------------------------------------------------------------- 1 | console.log("TODO: Connect with RealtimeClient and set url to /relay"); 2 | -------------------------------------------------------------------------------- /public/vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/public/vendor/README.md -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/test/index.spec.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/vitest.config.mts -------------------------------------------------------------------------------- /worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/worker-configuration.d.ts -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigsdennis/openai-realtime-api-relay-workers/HEAD/wrangler.toml --------------------------------------------------------------------------------