Defining Configuration
Use Pydantic models to define your plugin’s configuration schema. This schema is used to automatically generate the configuration UI in the platform.Accessing Configuration in Nodes
The configuration is automatically injected into your node’s execution context.Runtime Safety
- Bounds Enforcement: Use
ge(greater than or equal) andle(less than or equal) to prevent resource exhaustion. - Input Sanitization: Always sanitize string and list inputs before using them in external calls.
- Redaction: Sensitive fields should be marked so they are redacted in platform logs.
Publishing & Versioning
Learn how to ship configuration changes safely over time.