Inserting Text

Learn how chat completions inserts text between given prefixes and suffixes and it's practical use cases.

We'll cover the following...

Overview

OpenAI’s GPT-3.5 model has the ability to insert additional text between two separate texts. For this purpose, we provide a prefix prompt (prompt) as an incomplete text and suffix prompt (suffix) as the ending text. The long prefix prompt helps the model to understand the context. A sentence can be interpreted differently, but the suffix helps the model to understand the sentence’s ending context.

Inserting text
Inserting text

We input the prompt text and request parameters into the OpenAI API’s model to insert the text. ...