Skip to content

Commit

Permalink
fix: chat initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrzn committed Oct 2, 2023
1 parent 7f718dd commit 2484943
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/agent-utils/src/llm/Chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ export class Chat {
private _tokenizer: Tokenizer,
private _contextWindow?: ContextWindow,
private _logger?: Logger,
) { }
) {
this._chatLogs = new ChatLogs()
}

get chatLogs(): ChatLogs {
return this._chatLogs;
Expand Down

0 comments on commit 2484943

Please sign in to comment.