You can use the following code to start integrating your current prompt and settings into your application.
Python Code
node.js Code
const { Configuration, OpenAIApi } = require("openai");
const configuration = new Configuration({
apiKey: process.env.OPENAI_API_KEY,
});
const openai = new OpenAIApi(configuration);
const response = await openai.createCompletion({
model: "text-davinci-003",
prompt: " calculator using HTML , CSS , Java with code programe\n",
temperature: 0.7,
max_tokens: 256,
top_p: 1,
frequency_penalty: 0,
presence_penalty: 0,
});
curl Code
curl https://api.openai.com/v1/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "text-davinci-003",
"prompt": " calculator using HTML , CSS , Java with code programe\n",
"temperature": 0.7,
"max_tokens": 256,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0
}'
json Code
{
"model": "text-davinci-003",
"prompt": " calculator using HTML , CSS , Java with code programe\n",
"temperature": 0.7,
"max_tokens": 256,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0
}
This all code help to create your own chat GPT .
Your API Key can be found here. You should use environment variables or a secret management tool to expose your key to your applications.
No comments:
Post a Comment