@artinet/sdk
Version:
A TypeScript SDK for building collaborative AI agents.
21 lines (20 loc) • 409 B
JavaScript
/**
* Copyright 2025 The Artinet Project
* SPDX-License-Identifier: Apache-2.0
*/
export {};
/**
* Carry Only Returns
* @internal
* Potential Upgrade:
* Currently enforce that args cant be passed back without a reply,
* but may allow carry only returns in the future.
*
* ```typescript
* type CarryOnly<Carried extends BaseArgs> = {
* args: Carried;
* } & {
* reply: never;
* };
* ```
*/