Generation
Learn how to use chat completions for generating new text and its practical use cases.
We'll cover the following...
Overview
The OpenAI models are also great at generating code and text as they have been trained on a large amount of data from different resources.
Press + to interact
We input the prompt text and request parameters into the OpenAI API's model to generate both text and code.
Press + to interact
Generate text
Now that we have learned about how OpenAI API’s model work, we can utilize the following prompt to generate new ideas about deep learning and images:
Brainstorm some ideas combining deep learning and images:
Example
Let’s try the above example in the code widget below:
Press + to interact
SECRET_KEY
Not Specified...
// Define endpoint URL hereconst endpointUrl = "https://api.openai.com/v1/chat/completions";// Define Header Parameters hereconst headerParameters = {"Authorization": "Bearer {{SECRET_KEY}}","Content-Type": "application/json"};// Body Parametersconst bodyParameters = JSON.stringify({model: "gpt-3.5-turbo",messages: [{ role: "system", content: "You are a helpful assistant." }],messages: [{ role: "user", content: "Brainstorm some ideas combining deep learning and images." }],temperature: 0.75,max_tokens: 200,top_p: 1.0,frequency_penalty: 1,presence_penalty: 1});// Set API call optionsconst options = {method: "POST",headers: headerParameters,body: bodyParameters};// Function to make API callasync function generateCompletion() {try {const response = await fetch(`${endpointUrl}`, options);// Print the responseprintResponse(response);} catch (error) {// Print the error messageprintError(error);}}// Call the function to make the API call.generateCompletion();
In the code above, we use ...