Skip to main content

A lightweight Python framework for building modular AI pipelines with function nodes and agent nodes.

Project description

Pipeline Node Agents

A lightweight Python framework for building modular AI pipelines with function nodes and agent nodes. Designed to work well with lightweight local LLMs by giving you full control over context and task complexity at each step.

Usage Guide

Requirements

  • OS: Ubuntu 20.04 or later
  • RAM: 8 GB minimum (16 GB recommended)
  • Disk: 10 GB free space
  • curl (any recent version)
  • Python 3.11 - 3.13

1) Setup Ollama

  • Install Ollama (if not already installed):

    curl -fsSL https://ollama.com/install.sh | sh
    
  • Run Ollama in a separate terminal:

    ollama serve
    
  • Install LLM (default: llama3.2:latest):

    ollama pull llama3.2:latest
    
  • Make sure the required LLM is installed using command:

    ollama list
    

Expected output:

NAME                ID              SIZE     MODIFIED
llama3.2:latest     9f1c3d6a5b8e    2.0 GB   1 minute ago

2) Install Package

  • (Optional, but recommended) create python virtual environment:

    python3 -m venv .venv && source .venv/bin/activate
    
  • Install package:

    pip install pipeline-node-agents
    

3) Verify Installation

from pipeline_node_agents import greet

print(greet())

Expected output:

Hello, World! Pipeline Node Agents <version> is working.

4) Run Pipelines

Option 1: With defined model and logger (recommended)

from crewai import LLM
from pipeline_node_agents import init_pipeline_logger, get_logger, TripPlannerPipeline

init_pipeline_logger(pipeline_name="trip_planner_pipeline", project_root=".")
logger = get_logger(__name__)

# Default model is llama3.2, change if needed
ollama_llm = LLM(model="ollama/llama3.2", base_url="http://localhost:11434")

pipeline = TripPlannerPipeline(ollama_llm=ollama_llm, logger=logger)
pipeline.run()

Option 2: Without logger

from pipeline_node_agents import TripPlannerPipeline

# Default model is llama3.2
pipeline = TripPlannerPipeline()
pipeline.run()

Available tools configuration

As default, agent nodes work as pure LLMs (without tools). You can allow them to search for information by themselves.

Note: Usage of tools is not recommended for light-weight LLMs (<8 billion hyperparameters).

To enable tools for specific agents in TripPlannerPipeline:

  1. Enable tools for local expert agent only:

    pipeline = TripPlannerPipeline(local_expert_tools_enabled=True)
    
  2. Enable tools for travel concierge agent only:

    pipeline = TripPlannerPipeline(travel_concierge_tools_enabled=True)
    
  3. Enable tools for both agents:

    pipeline = TripPlannerPipeline(local_expert_tools_enabled=True, travel_concierge_tools_enabled=True)
    

Available pipelines

The following pipelines are included as examples:

  • ConditioningPipeline: Randomly chooses whether to go to a park or cinema, and suggests either a film or a park in Vienna.

  • InputCheckerPipeline: Takes text as input and returns true if the text is a list of populated places (cities). Can be run as a loop, returning to the input step as long as the input is invalid: pipeline.run(loop=True)

  • RandomMeanPipeline: Simple pipeline without LLM usage that generates random numbers and calculates their mean.

  • RandomMeanPipelineCrewAI: Generates random numbers and summarizes them using an LLM.

  • SearchAndSummarizePipeline: Searches for the best country for business using DuckDuckGo and summarizes results using an LLM, returning the best country for business.

  • TripPlannerPipeline: Takes a list of cities and trip dates as input, chooses the city based on weather conditions, and creates a full 7-day trip itinerary for the provided dates.

To run one of them, replace "TripPlannerPipeline" in the code example with a class from the list above.

Example with SearchAndSummarizePipeline:

from pipeline_node_agents import SearchAndSummarizePipeline
pipeline = SearchAndSummarizePipeline()
pipeline.run()

Maintenance Guide

Creating a Custom Tool

The tools/ directory provides utility classes for operations used by pipeline nodes. Tools are implemented as simple static methods within classes.

To create a custom tool, define a class with static methods:

# filepath: pipeline_node_agents/src/pipeline_node_agents/tools/subtractor.py
class Subtractor:
    @staticmethod
    def subtract(a: float, b: float) -> float:
        """Subtract two numbers and return the difference."""
        return a - b

Using Custom Tools in FunctionNode

Once created, integrate your tool into a FunctionNode:

# main file
from pipeline_node_agents import PythonFnAdapter
from pipeline_node_agents.core.node import FunctionNode
from pipeline_node_agents.tools.subtractor import Subtractor

subtraction_node = FunctionNode(
    name="SubtractionNode",
    adapter=PythonFnAdapter(Subtractor.subtract),
    inputs=["number_a", "number_b"],
    output="difference"
)

Using Custom Tools in AgentNode (example with CrewAI)

For agent nodes, tools must be wrapped using CrewAI's @tool decorator:

# filepath: pipeline_node_agents/src/pipeline_node_agents/tools/subtractor_crewai.py
from crewai.tools import tool

class CrewAISubtractor:
    @staticmethod
    @tool("Subtract two numbers")
    def subtract(a: float, b: float) -> float:
        """Calculate the difference between two numbers."""
        return a - b
# main file
from crewai import Agent
from pipeline_node_agents.core.node import AgentNode
from pipeline_node_agents.adapters.crewai_adapter import CrewAIAdapter
from pipeline_node_agents.core.tools.subtractor_crewai import CrewAISubtractor

agent = Agent(
    name="Calculator Agent",
    role="Math Assistant",
    goal="Perform calculations",
    backstory="A helpful math assistant",
    tools=[CrewAISubtractor.subtract],
    llm=ollama_llm
)

node = AgentNode(
    name="MyAgentNode",
    adapter=CrewAIAdapter(agent=agent, task_description="Perform the calculation"),
    inputs=["data"],
    output="result"
)

For other maintenance aspects such as creating nodes, building pipelines, and extending the framework, refer to the full Maintenance Guide.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pipeline_node_agents-0.1.6.tar.gz (19.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pipeline_node_agents-0.1.6-py3-none-any.whl (32.3 kB view details)

Uploaded Python 3

File details

Details for the file pipeline_node_agents-0.1.6.tar.gz.

File metadata

  • Download URL: pipeline_node_agents-0.1.6.tar.gz
  • Upload date:
  • Size: 19.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for pipeline_node_agents-0.1.6.tar.gz
Algorithm Hash digest
SHA256 0375f5768cf3f67401eca90a9a7203934338d0ac6ca77d687bb773fa35938fe6
MD5 8b398d344043634d5bcc5aab97cafc93
BLAKE2b-256 c62f23c6f946803ec34b0fbdcd269a669c67daf5e336b2cef241d9140abf817d

See more details on using hashes here.

File details

Details for the file pipeline_node_agents-0.1.6-py3-none-any.whl.

File metadata

File hashes

Hashes for pipeline_node_agents-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 82d63630025df337f8c3302d3df667ca183257d5b04512c99bbf254a9286ab43
MD5 48326f912de1d60edb960c5d2f972984
BLAKE2b-256 cc78a88df1f6e9765978ebe9ee1766fb81b48fbdbcfa130112b58974014216da

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page