🧿Making requests
You can paste the command below into your terminal to run your first API request. Make sure to replace YOUR_API_KEY
with your secret API key.
YOUR_API_KEY
with your secret API key.This request queries the Davinci model to complete the text starting with a prompt of "Say this is a test". The max_tokens
parameter sets an upper bound on how many tokens the API will return. You should get a response back that resembles the following:
Now you've generated your first completion. If you concatenate the prompt and the completion text (which the API will do for you if you set the echo
parameter to true
), the resulting text is "Say this is a test. This is indeed a test." You can also set the stream
parameter to true
for the API to stream back text
Last updated