Skip to content

Instantly share code, notes, and snippets.

@Shawyeok
Created March 25, 2023 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shawyeok/bf2f4b56d8d4105bb93aa357ddd58183 to your computer and use it in GitHub Desktop.
Save Shawyeok/bf2f4b56d8d4105bb93aa357ddd58183 to your computer and use it in GitHub Desktop.
Setup a free openai api proxy with cloudflare workers
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
const url = new URL(request.url)
url.hostname = 'api.openai.com'
const modifiedRequest = new Request(url.toString(), {
headers: request.headers,
method: request.method,
body: request.body,
redirect: request.redirect
})
return await fetch(modifiedRequest)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment