mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-07 09:20:42 +00:00
9 lines
323 B
TypeScript
9 lines
323 B
TypeScript
import type { RunEmbeddedPiAgentParams } from "./pi-embedded-runner/run/params.js";
|
|
import type { EmbeddedPiRunResult } from "./pi-embedded-runner/types.js";
|
|
|
|
export type RunEmbeddedPiAgentFn = (
|
|
params: RunEmbeddedPiAgentParams,
|
|
) => Promise<EmbeddedPiRunResult>;
|
|
|
|
export type RunEmbeddedAgentFn = RunEmbeddedPiAgentFn;
|