For the complete documentation index, see llms.txt. This page is also available as Markdown.

Setting priorities

As multiple processors can operate concurrently, unexpected results can occur if we do not specify the order at which they are executed. To designate the priority of a processor method, assign it a value to the attribute. Lower values indicate higher priority and are executed first.

[Processor(100)]
public static string CheatCodeProcessor(string input) (...)

Last updated