Skip to content

Commit

Permalink
Fix parser errors
Browse files Browse the repository at this point in the history
  • Loading branch information
karenwong-openai committed Jul 22, 2024
1 parent 3128239 commit 6c0ba6e
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10611,8 +10611,7 @@ components:
x-oaiTypeLabel: map
nullable: true
temperature:
description: &run_temperature_description |
What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.
description: *run_temperature_description
type: number
minimum: 0
maximum: 2
Expand All @@ -10626,10 +10625,7 @@ components:
default: 1
example: 1
nullable: true
description: &run_top_p_description |
An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.

We generally recommend altering this or temperature but not both.
description: *run_top_p_description
response_format:
$ref: "#/components/schemas/AssistantsApiResponseFormatOption"
nullable: true
Expand Down Expand Up @@ -10717,10 +10713,7 @@ components:
default: 1
example: 1
nullable: true
description: &run_top_p_description |
An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.

We generally recommend altering this or temperature but not both.
description: *run_top_p_description
response_format:
$ref: "#/components/schemas/AssistantsApiResponseFormatOption"
nullable: true
Expand Down Expand Up @@ -11192,10 +11185,7 @@ components:
default: 1
example: 1
nullable: true
description: &run_top_p_description |
An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.

We generally recommend altering this or temperature but not both.
description: *run_top_p_description
stream:
type: boolean
nullable: true
Expand Down Expand Up @@ -14022,7 +14012,7 @@ components:
$ref: "#/components/schemas/AuditLogEventType"

effective_at:
type: int
type: integer
description: The Unix timestamp (in seconds) of the event.
project:
type: object
Expand All @@ -14049,6 +14039,8 @@ components:
properties:
scopes:
type: array
items:
type: string
description: A list of scopes allowed for the API key, e.g. `["api.model.request"]`
api_key.updated:
type: object
Expand All @@ -14063,6 +14055,8 @@ components:
properties:
scopes:
type: array
items:
type: string
description: A list of scopes allowed for the API key, e.g. `["api.model.request"]`
api_key.deleted:
type: object
Expand Down

0 comments on commit 6c0ba6e

Please sign in to comment.