Skip to content

Commit 5111f1e

Browse files
chore(internal): codegen related update (#29)
1 parent 806f949 commit 5111f1e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/resources/chat.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,8 @@ export namespace ChatCompletionsResponse {
238238
role: 'assistant';
239239

240240
/**
241-
* @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of
242-
* a function that should be called, as generated by the model.
241+
* @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a
242+
* function that should be called, as generated by the model.
243243
*/
244244
function_call?: Message.FunctionCall;
245245

@@ -251,8 +251,8 @@ export namespace ChatCompletionsResponse {
251251

252252
export namespace Message {
253253
/**
254-
* @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of
255-
* a function that should be called, as generated by the model.
254+
* @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a
255+
* function that should be called, as generated by the model.
256256
*/
257257
export interface FunctionCall {
258258
/**
@@ -722,8 +722,8 @@ export namespace ChatCompletionsParams {
722722
| null;
723723

724724
/**
725-
* @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of
726-
* a function that should be called, as generated by the model.
725+
* @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a
726+
* function that should be called, as generated by the model.
727727
*/
728728
function_call?: ChatCompletionRequestAssistantMessage.FunctionCall | null;
729729

@@ -770,8 +770,8 @@ export namespace ChatCompletionsParams {
770770
}
771771

772772
/**
773-
* @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of
774-
* a function that should be called, as generated by the model.
773+
* @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a
774+
* function that should be called, as generated by the model.
775775
*/
776776
export interface FunctionCall {
777777
/**

src/resources/files/files.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ export interface OpenAIFile {
106106
| 'vision';
107107

108108
/**
109-
* @deprecated: Deprecated. The current status of the file, which can be either
109+
* @deprecated Deprecated. The current status of the file, which can be either
110110
* `uploaded`, `processed`, or `error`.
111111
*/
112112
status: 'uploaded' | 'processed' | 'error';
113113

114114
/**
115-
* @deprecated: Deprecated. For details on why a fine-tuning training file failed
115+
* @deprecated Deprecated. For details on why a fine-tuning training file failed
116116
* validation, see the `error` field on `fine_tuning.job`.
117117
*/
118118
status_details?: string;

0 commit comments

Comments
 (0)