xingty / bingai2openai

An adapter to convert bing's api to openai's
23 stars 4 forks source link

Add OPTIONS route for /v1/chat/completions endpoint #5

Closed wafflecomposite closed 7 months ago

wafflecomposite commented 7 months ago

I have found that API is no longer working for UI apps like NextChat or BetterChatGPT. Direct POST request was still working, leaving me wondering.

After capturing some traffic with WireShark, I found out that now they're doing OPTIONS request before making the POST request

This PR fixes that

Before: image After: image

xingty commented 7 months ago

Thank you for you work