Create completion
Generate text completions for a given prompt using a language, code, or image model.
Request body
Example request
{
"prompt": "<s>[INST] What is the capital of France? [/INST]",
"logit_bias": {
"105": 21.4,
"1024": -10.5
},
"seed": 42
}Response
200
Example response
{
"choices": [
{
"text": "The capital of France is Paris. It's located in the north-central part of the country and is one of the most populous and visited cities in the world, known for its iconic landmarks like the Eiffel Tower, Louvre Museum, Notre-Dame Cathedral, and more. Paris is also the capital of the Île-de-France region and is a major global center for art, fashion, gastronomy, and culture."
}
],
"prompt": [
{
"text": "<s>[INST] What is the capital of France? [/INST]"
}
]
}Changes
Changed in 2 of the 14 revisions of this API.9
- ○
added the optional property
oneOf[CompletionEvent]/data/choices/items/delta/reasoning_contentto the response with the200statusresponse-optional-property-added
- ○
- ○
the
frequency_penaltyrequest property type/format was generalized fromnumber/floattonumber/request-property-type-generalized
- ○
the
logit_bias/additionalProperties/request property type/format was generalized fromnumber/floattonumber/request-property-type-generalized
- ○
the
min_prequest property type/format was generalized fromnumber/floattonumber/request-property-type-generalized
- ○
the
presence_penaltyrequest property type/format was generalized fromnumber/floattonumber/request-property-type-generalized
- ○
the
repetition_penaltyrequest property type/format was generalized fromnumber/floattonumber/request-property-type-generalized
- ○
the
temperaturerequest property type/format was generalized fromnumber/floattonumber/request-property-type-generalized
- ○
the
top_krequest property type/format was generalized frominteger/int32tointeger/request-property-type-generalized
- ○
the
top_prequest property type/format was generalized fromnumber/floattonumber/request-property-type-generalized
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○