We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
--data-urlencode prompt='Once upon a time'
EventSourcePolyfill
The text was updated successfully, but these errors were encountered:
there is no option to send POST request or add a body to a request, could you add a query parameter instead?
Sorry, something went wrong.
Sure, could you show me an example?
new EventSource("https://example.com/?prompt=Once%20upon%20a%20time&max_tokens=3")
No branches or pull requests
If I have a curl request like the following:
How do I pass
--data-urlencode prompt='Once upon a time'
to my toEventSourcePolyfill
request?The text was updated successfully, but these errors were encountered: