mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-30 19:32:27 +00:00
11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
import type { DeliveryContext } from "../utils/delivery-context.js";
|
|
import type { AnyAgentTool } from "./tools/common.js";
|
|
|
|
export function applyPluginToolDeliveryDefaults(params: {
|
|
tools: AnyAgentTool[];
|
|
deliveryContext?: DeliveryContext;
|
|
}): AnyAgentTool[] {
|
|
void params.deliveryContext;
|
|
return params.tools;
|
|
}
|