Skip to content

Commit

Permalink
feat: optimize code
Browse files Browse the repository at this point in the history
Signed-off-by: SuZhou-Joe <[email protected]>
  • Loading branch information
SuZhou-Joe committed Dec 1, 2023
1 parent c5d1a71 commit 3f6c046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/services/storage/agent_framework_storage_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class AgentFrameworkStorageService implements StorageService {
>,
]);
const messageParserRunner = new MessageParserRunner(this.messageParsers);
const finalInteractions: Interaction[] = [...interactionsResp.body.interactions];
const finalInteractions = interactionsResp.body.interactions;

let finalMessages: IMessage[] = [];
for (const interaction of finalInteractions) {
Expand Down

0 comments on commit 3f6c046

Please sign in to comment.