MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / toolPipeCall

Function toolPipeCall

examples/astro/baseai/tools/pipe-call.ts:13–30  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11};
12
13const toolPipeCall = () => ({
14 run: runSummaryPipe,
15 type: 'function',
16 function: {
17 name: 'runSummaryPipe',
18 description: `Call a pipe that can summarize text.`,
19 parameters: {
20 type: 'object',
21 required: ['prompt'],
22 properties: {
23 prompt: {
24 type: 'string',
25 description: 'User input to summarize',
26 },
27 },
28 },
29 },
30});
31
32export default toolPipeCall;

Callers 1

getPipeWithPipesAsToolsFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected