.. | ||
DOC.md | ||
README.md |
Certainly! I'll provide a comprehensive documentation for the Lollms Flow library. This library seems to be a powerful tool for building and visualizing workflows with nodes and connections. Here's the full documentation:
Lollms Flow Library Documentation
Overview
Lollms Flow is a JavaScript library for building, visualizing, and executing workflows. It provides a set of classes and methods to create nodes, connect them, and visualize the resulting workflow in an SVG-based interface.
Classes
1. WorkflowNode
Represents a single node in the workflow.
Constructor
new WorkflowNode(id, name, inputs, outputs, operation, options = {}, x = 0, y = 0)
id
: Unique identifier for the nodename
: Display name of the nodeinputs
: Array of input socketsoutputs
: Array of output socketsoperation
: Function to execute when the node is processedoptions
: Object containing node-specific optionsx
,y
: Initial position of the node in the visualization
Methods
connect(outputIndex, targetNode, inputIndex)
: Connect this node's output to another node's inputexecute(inputs)
: Execute the node's operationtoJSON()
: Convert the node to a JSON representationstatic fromJSON(json, operation)
: Create a node from a JSON representation
2. Workflow
Manages the entire workflow, including nodes and their connections.
Constructor
new Workflow()
Methods
addNode(node)
: Add a node to the workflowconnectNodes(sourceId, sourceOutput, targetId, targetInput)
: Connect two nodescanConnect(sourceNode, sourceOutput, targetNode, targetInput)
: Check if two nodes can be connectedexecute()
: Execute the entire workflowtoJSON()
: Convert the workflow to a JSON representationstatic fromJSON(json, nodeOperations)
: Create a workflow from a JSON representation
3. WorkflowVisualizer
Handles the visualization of the workflow using SVG.
Constructor
new WorkflowVisualizer(containerId)
containerId
: ID of the HTML element to contain the SVG visualization
Methods
addNode(node)
: Add a node to the workflow and visualize itconnectNodes(sourceId, sourceOutput, targetId, targetInput)
: Connect two nodes and visualize the connectionexecute()
: Execute the workflowsaveToJSON()
: Save the workflow to a JSON stringloadFromJSON(json, nodeOperations)
: Load a workflow from a JSON stringsaveToLocalStorage(key)
: Save the workflow to local storageloadFromLocalStorage(key, nodeOperations)
: Load a workflow from local storageredraw()
: Redraw the entire workflow visualization
Usage
- Create a WorkflowVisualizer instance:
const visualizer = new WorkflowVisualizer('workflow-container');
- Define node operations:
const nodeOperations = {
'Add': (inputs) => ({ result: inputs.a + inputs.b }),
'Multiply': (inputs) => ({ result: inputs.a * inputs.b })
};
- Create and add nodes:
const addNode = new WorkflowNode('1', 'Add',
[{ name: 'a', type: 'number' }, { name: 'b', type: 'number' }],
[{ name: 'result', type: 'number' }],
nodeOperations['Add']
);
visualizer.addNode(addNode);
- Connect nodes:
visualizer.connectNodes('1', 0, '2', 0);
- Execute the workflow:
const results = visualizer.execute();
- Save and load workflows:
const json = visualizer.saveToJSON();
visualizer.loadFromJSON(json, nodeOperations);
Advanced version with options
- First, let's define the node operation:
const nodeOperations = {
'TextInput': (inputs, options) => ({ text: options.inputText })
};
- Now, let's create the node with the textarea option:
const textInputNode = new WorkflowNode(
'1', // id
'Text Input', // name
[], // inputs (empty array as we don't need input sockets)
[{ name: 'text', type: 'string' }], // outputs
nodeOperations['TextInput'], // operation
{ // options
inputText: {
type: 'textarea',
value: '' // initial value
}
}
);
- Add the node to the visualizer:
visualizer.addNode(textInputNode);
-
The WorkflowVisualizer class already handles the creation of the textarea in the
drawOptions
method. When the user types in the textarea, it will automatically update theoptions.inputText.value
. -
To execute the node and get the output:
const results = visualizer.execute();
console.log(results['1'].text); // This will log the text entered in the textarea
Here's a complete example of how to set this up:
// Assume we have already created the WorkflowVisualizer
const visualizer = new WorkflowVisualizer('workflow-container');
// Define the node operation
const nodeOperations = {
'TextInput': (inputs, options) => ({ text: options.inputText.value })
};
// Create the node
const textInputNode = new WorkflowNode(
'1',
'Text Input',
[],
[{ name: 'text', type: 'string' }],
nodeOperations['TextInput'],
{
inputText: {
type: 'textarea',
value: 'Enter your text here'
}
},
50, // x position
50 // y position
);
// Add the node to the visualizer
visualizer.addNode(textInputNode);
// To execute and get the result:
document.getElementById('executeButton').addEventListener('click', () => {
const results = visualizer.execute();
console.log('Output text:', results['1'].text);
});
In this setup:
- We define a 'TextInput' node operation that simply returns the text from the options.
- We create a WorkflowNode with no inputs, one 'text' output, and an 'inputText' option of type 'textarea'.
- We add the node to the visualizer, which will create the visual representation including the textarea.
- When executed, the node will output whatever text is currently in the textarea.
The user can interact with the node in the visualization, typing text into the textarea. When the workflow is executed, it will output the current content of the textarea.
This approach allows for dynamic, user-input text to be part of your workflow, which can then be processed by other nodes or used as the final output of the workflow.
Features
- Dynamic node creation and connection
- SVG-based visualization
- Drag-and-drop node positioning
- Interactive socket connections
- Node options with various input types (checkbox, radio, select, file, textarea)
- Workflow execution
- JSON serialization and deserialization
- Local storage integration
Customization
The library allows for extensive customization:
- Node colors can be set individually
- Socket colors are determined by data type
- Node shadows and hover effects are included
- Connection paths are drawn as curved lines
Event Handling
The library handles various mouse events for interactivity:
- Node dragging
- Socket connection creation
- Socket highlighting on hover
Best Practices
- Ensure unique IDs for each node
- Define clear input and output types for proper connections
- Implement error handling in node operations
- Use meaningful names for nodes and sockets
- Regularly save workflows to prevent data loss
Limitations
- The library currently does not support undo/redo operations
- Circular dependencies in the workflow are not handled automatically
Future Enhancements
Potential areas for improvement include:
- Implementing undo/redo functionality
- Adding support for subflows or grouped nodes
- Enhancing the UI with zoom and pan capabilities
- Implementing a node search or categorization system
This documentation provides a comprehensive overview of the Lollms Flow library, its classes, methods, and usage. It should help users understand and effectively utilize the library for building and visualizing workflows.