Configurable plugins allow operators and users to tune behavior directly from the Noxus UI without redeploying code.Documentation Index
Fetch the complete documentation index at: https://docs.noxus.ai/llms.txt
Use this file to discover all available pages before exploring further.
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.