@assistant-ui/react
Version:
TypeScript/React library for AI Chat
12 lines • 382 B
TypeScript
export declare const useToolArgsFieldStatus: (fieldPath: (string | number)[]) => {
readonly type: "running";
} | {
readonly type: "complete";
} | {
readonly type: "incomplete";
readonly reason: "cancelled" | "length" | "content-filter" | "other" | "error";
readonly error?: unknown;
} | {
type: string;
};
//# sourceMappingURL=useToolArgsFieldStatus.d.ts.map