Skip to content

Commit

Permalink
chore(internal): codegen related update (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Jan 23, 2025
1 parent 2f4ee26 commit 99cf580
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/resources/chat/completions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ export interface ChatCompletionAssistantMessageParam {
content?: string | null;

/**
* @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of
* a function that should be called, as generated by the model.
* @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a
* function that should be called, as generated by the model.
*/
function_call?: ChatCompletionAssistantMessageParam.FunctionCall;

Expand All @@ -151,8 +151,8 @@ export interface ChatCompletionAssistantMessageParam {

export namespace ChatCompletionAssistantMessageParam {
/**
* @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of
* a function that should be called, as generated by the model.
* @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a
* function that should be called, as generated by the model.
*/
export interface FunctionCall {
/**
Expand Down Expand Up @@ -249,8 +249,8 @@ export namespace ChatCompletionChunk {
content?: string | null;

/**
* @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of
* a function that should be called, as generated by the model.
* @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a
* function that should be called, as generated by the model.
*/
function_call?: Delta.FunctionCall;

Expand All @@ -264,8 +264,8 @@ export namespace ChatCompletionChunk {

export namespace Delta {
/**
* @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of
* a function that should be called, as generated by the model.
* @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a
* function that should be called, as generated by the model.
*/
export interface FunctionCall {
/**
Expand Down Expand Up @@ -429,8 +429,8 @@ export interface ChatCompletionMessage {
role: 'assistant';

/**
* @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of
* a function that should be called, as generated by the model.
* @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a
* function that should be called, as generated by the model.
*/
function_call?: ChatCompletionMessage.FunctionCall;

Expand All @@ -442,8 +442,8 @@ export interface ChatCompletionMessage {

export namespace ChatCompletionMessage {
/**
* @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of
* a function that should be called, as generated by the model.
* @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a
* function that should be called, as generated by the model.
*/
export interface FunctionCall {
/**
Expand Down

0 comments on commit 99cf580

Please sign in to comment.