Skip to content

Version Decorator

Specifies the version of the Prompt Decorators standard to use. This decorator must be the first in any sequence when used, ensuring proper interpretation of decorators according to the specified standard version.

Category: Minimal

Parameters

Parameter Type Description Default
standard string The semantic version of the Prompt Decorators standard to use 1.0.0

Examples

Specify standard version for compatibility

+++Version(standard=1.0.0)
+++Reasoning(depth=comprehensive)
Explain quantum entanglement

Ensures decorators are interpreted according to version 1.0.0 of the standard

Implementation Guidance

Version specification

Original Prompt:

+++Reasoning(depth=comprehensive)
Explain quantum entanglement

Transformed Prompt:

The following prompt uses Prompt Decorators standard version 1.0.0. Please interpret all decorators according to this version's specifications.

+++Reasoning(depth=comprehensive)
Explain quantum entanglement

Transformation Details

Base Instruction: The following prompt uses Prompt Decorators standard version {standard}. Please interpret all decorators according to this version's specifications.

Placement: prepend

Composition Behavior: override

Parameter Effects:

  • standard:
  • Format: The following prompt uses Prompt Decorators standard version {value}. Please interpret all decorators according to this version's specifications.

Compatibility

  • Requires: None
  • Conflicts: None
  • Compatible Models: gpt-4o, gpt-4-turbo
  • Minimum Standard Version: 1.0.0
  • All: Requires Version The Version decorator should always be the first in any sequence when used