UNPKG

@artinet/sdk

Version:

A TypeScript SDK for building collaborative AI agents.

9 lines (8 loc) 305 B
/** * Copyright 2025 The Artinet Project * SPDX-License-Identifier: Apache-2.0 */ import { A2A } from "../types/index.js"; export declare const FINAL_STATES: A2A.TaskState[]; export declare const PROCESSING_STATES: A2A.TaskState[]; export declare const isProcessing: (state: A2A.TaskState) => boolean;