simplebench.enums.format module🔗

Format enums for SimpleBench.

class simplebench.enums.format.Format(value)[source]🔗

Bases: str, Enum

Categories for different output formats.

Defined Formats are:
  • PLAIN_TEXT: Plain text format.

  • RICH_TEXT: Rich text format.

  • CSV: CSV format.

  • JSON: JSON format.

  • GRAPH: Graphical format.

  • CUSTOM: Custom format.

CSV = 'csv'🔗

CSV format

CUSTOM = 'custom'🔗

Custom format

GRAPH = 'graph'🔗

Graphical format

JSON = 'json'🔗

JSON format

PLAIN_TEXT = 'plain text'🔗

Plain text format

RICH_TEXT = 'rich text'🔗

Rich text format