UNPKG

@artinet/sdk

Version:

A TypeScript SDK for building collaborative AI agents.

8 lines (7 loc) 213 B
/** * Copyright 2025 The Artinet Project * SPDX-License-Identifier: Apache-2.0 */ export function getLatestHistory(task, length) { return length ? task.history?.slice(-length) ?? [] : task.history ?? []; }