EventSource
EventSource copied to clipboard
How to pass 'body' params to EventSourcePolyfill?
If I have a curl request like the following:
curl -G https://api.openai.com/v1/engines/davinci/completions/browser_stream \
--data-urlencode prompt='Once upon a time' \
--data-urlencode max_tokens=3 \
-H 'Authorization: Bearer YOUR_API_KEY'
How do I pass --data-urlencode prompt='Once upon a time' to my to EventSourcePolyfill request?
there is no option to send POST request or add a body to a request, could you add a query parameter instead?
Sure, could you show me an example?
new EventSource("https://example.com/?prompt=Once%20upon%20a%20time&max_tokens=3")