You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: When `echo` is true, the prompt is included in the response. Additionally, when `logprobs` is also provided, log probability information is provided on the prompt.
8662
8671
$ref: '#/components/schemas/PromptPart'
8663
8672
usage:
8664
8673
$ref: '#/components/schemas/UsageData'
@@ -8674,6 +8683,7 @@ components:
8674
8683
- choices
8675
8684
- usage
8676
8685
- created
8686
+
- prompt
8677
8687
- model
8678
8688
- object
8679
8689
@@ -8791,6 +8801,8 @@ components:
8791
8801
allOf:
8792
8802
- nullable: true
8793
8803
- $ref: '#/components/schemas/LogprobsPart'
8804
+
top_logprobs:
8805
+
$ref: '#/components/schemas/TopLogprobs'
8794
8806
ChatCompletionMessage:
8795
8807
type: object
8796
8808
required: [role, content]
@@ -9279,14 +9291,17 @@ components:
9279
9291
type: integer
9280
9292
model:
9281
9293
type: string
9294
+
prompt:
9295
+
description: When `echo` is true, the prompt is included in the response. Additionally, when `logprobs` is also provided, log probability information is provided on the prompt.
9296
+
$ref: '#/components/schemas/PromptPart'
9282
9297
object:
9283
9298
description: The object type, which is always `chat.completion`.
0 commit comments