Workflows, Teams & Agency

Understand the AI automation hierarchy in Lasius - from individual workflows to organization-wide agencies.

Lasius organizes AI automation into a clear hierarchy that scales from simple tasks to complex organizational goals.

The Lasius Hierarchy

Workflows → Teams → Agency
LevelWhat It IsScope
WorkflowA single automation pipeline built with connected nodesIndividual task
TeamMultiple workflows working togetherSpecialized function
AgencyMultiple teams coordinated to achieve complex goalsOrganization-level

Workflows

A Workflow is the fundamental building block in Lasius. It's a visual pipeline where you connect different nodes together to create an automation flow.

Think of a workflow like a flowchart — data flows from one node to the next, getting processed along the way.

What Makes Up a Workflow?

  • Nodes — Individual components that perform specific tasks (input, processing, output)
  • Edges — Connections between nodes that define how data flows
  • Configuration — Settings for each node (model selection, prompts, parameters)

Example Workflow

A simple Q&A workflow might look like:

[User Input] → [AI Model] → [Response Output]

A more complex workflow with knowledge retrieval:

[User Question] → [Knowledge Base Search] → [AI Model + Context] → [Answer]

Node Categories

CategoryPurposeExamples
InputReceive data into the workflowText Input, Chat Input, File Upload
OutputReturn results from the workflowText Output, Chat Output, API Response
LLM ModelsProcess with AI modelsOpenAI, Anthropic, Bedrock, Gemini, Ollama
ToolsPerform specific actionsCalculator, Web Search, API Call
AgentsIntelligent reasoning with tool useLangGraph Agent
MemoryStore and recall informationConversation History, Redis Memory
Knowledge BaseSearch your documentsKB Retrieval, Document Query
LogicControl flow and data transformationConditional Branch, Loop, Transform
MCPExternal tool integrationsMCP Client nodes

Agents

An Agent is a special type of node that can reason, plan, and use tools autonomously. Unlike simple LLM nodes that just generate text, agents can:

  • Think step-by-step about how to solve a problem
  • Choose and use tools based on the task
  • Remember context across a conversation
  • Recover from errors and try alternative approaches

Agent Capabilities

CapabilityDescription
ReasoningBreak down complex problems into steps
PlanningDecide which actions to take and in what order
Tool UseCall calculators, search the web, query databases
MemoryRemember previous messages and context
Self-CorrectionRecognize mistakes and adjust approach

When to Use an Agent vs LLM Node

  • Use an LLM Node for simple text generation, summarization, or classification
  • Use an Agent when the task requires reasoning, multiple steps, or tool use

Teams (Coming Soon)

A Team combines multiple workflows to handle a specialized function — like a department in an organization.

How Teams Work

  • Multiple workflows are grouped together
  • Conditional routing directs tasks to the right workflow
  • Workflows can share context and collaborate

Example: Customer Support Team

[Incoming Request]
[Router: What type of request?]
┌─────────────────┬─────────────────┬─────────────────┐
↓                 ↓                 ↓                 ↓
[Billing]    [Technical]     [General]        [Escalation]
Workflow      Workflow        Workflow         Workflow

Agency (Coming Soon)

An Agency is the highest level of organization — it coordinates multiple Teams to achieve complex, organization-wide goals.

Think of It Like a Real Agency

Real WorldLasius Equivalent
Marketing AgencyAgency
Creative Team, Analytics Team, Content TeamTeams
Individual campaigns, reports, content piecesWorkflows

Example: Marketing Agency

┌─────────────────────────────────────────┐
│           Marketing Agency              │
├─────────────────────────────────────────┤
│                                         │
│  ┌──────────┐  ┌──────────┐  ┌───────┐ │
│  │ Content  │  │Analytics │  │  SEO  │ │
│  │   Team   │  │   Team   │  │ Team  │ │
│  └──────────┘  └──────────┘  └───────┘ │
│                                         │
└─────────────────────────────────────────┘

Summary

ConceptPurposeStatus
WorkflowSingle automation pipeline with connected nodesAvailable
NodesIndividual components (input, LLM, tools, output)Available
AgentIntelligent node with reasoning and tool useAvailable
TeamGroup of workflows for specialized functionsComing Soon
AgencyCoordination of teams for complex goalsComing Soon