Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Exploring GPT-3

You're reading from   Exploring GPT-3 An unofficial first look at the general-purpose language processing API from OpenAI

Arrow left icon
Product type Paperback
Published in Aug 2021
Publisher Packt
ISBN-13 9781800563193
Length 296 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Steve Tingiris Steve Tingiris
Author Profile Icon Steve Tingiris
Steve Tingiris
Arrow right icon
View More author details
Toc

Table of Contents (15) Chapters Close

Preface 1. Section 1: Understanding GPT-3 and the OpenAI API
2. Chapter 1: Introducing GPT-3 and the OpenAI API FREE CHAPTER 3. Chapter 2: GPT-3 Applications and Use Cases 4. Section 2: Getting Started with GPT-3
5. Chapter 3: Working with the OpenAI Playground 6. Chapter 4: Working with the OpenAI API 7. Chapter 5: Calling the OpenAI API in Code 8. Section 3: Using the OpenAI API
9. Chapter 6: Content Filtering 10. Chapter 7: Generating and Transforming Text 11. Chapter 8: Classifying and Categorizing Text 12. Chapter 9: Building a GPT-3-Powered Question-Answering App 13. Chapter 10: Going Live with OpenAI-Powered Apps 14. Other Books You May Enjoy

Using the Completions endpoint

When you're working with the OpenAI API, most of what you'll be doing will probably involve using the Completions endpoint. This is the endpoint you send prompts to. In addition to submitting your prompt, you can also include values to influence how the completion is generated, like the setting in the Playground.

Using the Completions endpoint is a little more involved than using the List Engines endpoint that we looked at in the last section, Introducing JSON. This is because the Completions endpoint uses the HTTP POST method and requires a JSON object as the body. Technically, the JSON body could just be an empty object (just a left and right curly brace, like {}), but minimally, you'll want to include at least the prompt element with the value set to your prompt string, something like the following JSON example:

{"prompt": "Once upon a time"}

The preceding example is a simple one but here's how we&apos...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime