FloatInput
What is it?
The FloatInput node is a simple way to input floating-point number values.
When would I use it?
Use this node when you want to:
- Define a numerical value with decimal precision
- Create a configurable number parameter for your workflow
- Set up values for mathematical operations
- Establish thresholds, rates, or other decimal values
How to use it
Basic Setup
- Add a FloatInput node to your workflow
- Set your desired float value
Parameters
- float: A floating-point number value (default is 0.0)
Outputs
- float: The floating-point value that can be used by other nodes
Example
Imagine you want to set a temperature value for an AI model:
- Add a FloatInput node to your workflow
- Set the "float" value to 0.7
- Connect the output to a model's temperature parameter
- The AI model will now use 0.7 as its temperature setting
Important Notes
- This node creates a single floating-point value
- The default value is 0.0 if none is specified
- You can update the value through the node's properties
- Floating-point numbers can represent decimal values like 0.5, 3.14159, or -2.75
Common Issues
- None