Transform your YAML data into the clean, token-efficient TOON format.
Converting your YAML to TOON format is simple and straightforward. Follow these steps:
TOON (Token-Oriented Object Notation) is a revolutionary data format specifically designed to optimize data transmission to Large Language Models (LLMs).
Unlike traditional YAML or JSON, TOON eliminates unnecessary syntax overhead like quotation marks, brackets, and verbose formatting. It uses a compact, human-readable structure that reduces token consumption by 30-60% while maintaining complete data integrity.
YAML (35 tokens):
person:
firstName: John
lastName: Doe
age: 30
isStudent: false
city: New York
TOON (22 tokens - 37.1% saved!):
firstName: John
lastName: Doe
age: 30
isStudent: false
city: New York
TOON is perfect for applications where token efficiency matters - API costs, context window limits, and faster response times. It's fully compatible with all major LLMs including GPT-4, Claude, Gemini, and more.