What this builds. The simplest possible pipeline — one input, one output, no transforms. You’ll end up with. A deployed pipeline namedDocumentation Index
Fetch the complete documentation index at: https://docs.vectorshift.ai/llms.txt
Use this file to discover all available pages before exploring further.
llm_pipeline on your account that echoes its input_node into its output_node, plus the printed run result.
This example is the canonical “first pipeline” used to verify your install and API key. To actually call an LLM, see
rag-pipeline (which wires an LLM node behind a knowledge-base reader) or any of the streaming examples — each starts from the same Pipeline.fetch(...) / Pipeline.new(...) idiom shown here.Expected output
output_node value mirrors whatever you pass under the input key in inputs={...}.
See also
RAG pipeline
Add a knowledge-base reader + LLM to this skeleton.
Text processing
A more substantive single-pipeline example.
Pipeline reference
Every method on
Pipeline.