UNPKG

braiin

Version:

Behavioral Reasoning AI for Intelligent Navigation

10 lines (9 loc) 230 B
import { LLMAction } from "../model/llm"; export type ParseActionResult = { ok: true; action: LLMAction; } | { ok: false; error: string; }; export declare const parseLLMAction: (raw: unknown) => ParseActionResult;