Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Build custom task pipelines with the pipeline namespace exported by @cognee/cognee-ts.
pipeline
import { pipeline, init } from '@cognee/cognee-ts'; init(); const task = pipeline.createTask((input: pipeline.CogneeValue, ctx: pipeline.TaskContext) => { // process input … return input; }); const p = new pipeline.Pipeline("my pipeline"); p.addTask(new pipeline.TaskInfo(task)); const [result] = await p.execute([pipeline.CogneeValue.fromString("hello")], ctx);
@cognee/cognee-ts
import { Pipeline, TaskInfo, createTask, CogneeValue, TaskContext, RunHandle, CancellationHandle, CancellationToken, createCancellationPair, ProgressToken, Watcher, createWatcher, createNoopWatcher, } from '@cognee/cognee-ts';
Was this page helpful?