🚀 Try Zilliz Cloud, the fully managed Milvus, for free—experience 10x faster performance! Try Now>>

Milvus
Zilliz
  • Home
  • AI Reference
  • What is the stop parameter in OpenAI’s API, and how do I use it?

What is the stop parameter in OpenAI’s API, and how do I use it?

The stop parameter in OpenAI’s API is a tool that lets you control where the model stops generating text. When you provide a stop sequence (a string or list of strings), the API will halt text generation as soon as it encounters any of the specified sequences. This is useful for preventing the model from continuing beyond a desired point, such as ending a response after a complete sentence or truncating output to fit specific formatting needs. For example, if you set stop=["\n"], the model will stop at the first newline character, ensuring the output doesn’t span multiple lines unless you want it to.

To use the stop parameter effectively, include it in your API request as part of the parameters. For instance, if you’re building a chatbot and want responses to end when a user’s name appears, you might set stop=["John:"]. The model will generate text until it detects “John:” and then immediately stop. Similarly, you can use multiple stop sequences: stop=["###", "END"] tells the model to stop if it generates either “###” or "END". This is particularly helpful for structured outputs, like truncating a list after three items or stopping at a specific keyword in a code snippet. Note that the stop sequences are case-sensitive and must match exactly.

While the stop parameter is straightforward, there are nuances to consider. First, the model stops after generating the stop sequence, so the sequence itself won’t appear in the output. For example, if you use stop=["."], the output will include everything up to (but not including) the period. Second, the model may not always stop precisely if the stop sequence isn’t tokenized as expected. For instance, a stop sequence like "stop" might not work if the model splits it into subwords (e.g., "st" and "op"). Testing with different sequences and adjusting based on output is key. Lastly, avoid overly generic stop terms (like "a" or "the") to prevent unintended early stops. Used thoughtfully, the stop parameter provides precise control over text generation boundaries.

Like the article? Spread the word