Skip to content

Commit

Permalink
Merge pull request #265 from polywrap/fix/chat
Browse files Browse the repository at this point in the history
fix: chat logs initialization
  • Loading branch information
dOrgJelli authored Oct 2, 2023
2 parents f63ec50 + 2484943 commit cb843ca
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 cb843ca

Please sign in to comment.