Skip to content

Commit

Permalink
feat(openai_dart): Add gpt-3.5-turbo-1106 chat model (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmigloz committed Nov 15, 2023
1 parent 7e4602f commit 73f3791
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,8 @@ enum ChatCompletionModels {
gpt35Turbo0301,
@JsonValue('gpt-3.5-turbo-0613')
gpt35Turbo0613,
@JsonValue('gpt-3.5-turbo-1106')
gpt35Turbo1106,
@JsonValue('gpt-3.5-turbo-16k-0613')
gpt35Turbo16k0613,
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/openai_dart/oas/openapi_curated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,7 @@ components:
"gpt-3.5-turbo-16k",
"gpt-3.5-turbo-0301",
"gpt-3.5-turbo-0613",
"gpt-3.5-turbo-1106",
"gpt-3.5-turbo-16k-0613",
]
messages:
Expand Down
3 changes: 1 addition & 2 deletions packages/openai_dart/oas/openapi_official.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5983,6 +5983,7 @@ components:
"gpt-3.5-turbo-16k",
"gpt-3.5-turbo-0301",
"gpt-3.5-turbo-0613",
"gpt-3.5-turbo-1106",
"gpt-3.5-turbo-16k-0613",
]
x-oaiTypeLabel: string
Expand Down Expand Up @@ -8187,7 +8188,6 @@ components:
x-oaiTypeLabel: map
nullable: true
required:
- thread_id
- assistant_id
ListRunsResponse:
type: object
Expand Down Expand Up @@ -8303,7 +8303,6 @@ components:
x-oaiTypeLabel: map
nullable: true
required:
- thread_id
- assistant_id

ThreadObject:
Expand Down

0 comments on commit 73f3791

Please sign in to comment.