Skip to content

Commit

Permalink
chore: comment finish reasons map
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhongpinWang committed Nov 15, 2024
1 parent 5b2c50a commit 1c5032c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import type { AzureOpenAiChatCompletionStream } from './azure-openai-chat-comple
*/
export class AzureOpenAiChatCompletionStreamResponse<T> {
private _usage: AzureOpenAiCompletionUsage | undefined;
/**
* Finish reasons for all choices.
*/
private _finishReasons: Map<number, string> = new Map();
private _stream: AzureOpenAiChatCompletionStream<T> | undefined;

Expand Down

0 comments on commit 1c5032c

Please sign in to comment.