Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.coralos.ai/llms.txt

Use this file to discover all available pages before exploring further.

The ByteSize type is used when a configuration field requires a size in bytes. Sizes are specified by combining a floating point number with a size unit. For example, 10 KiB can be specified as an inline table:
size = { size = 10.0, unit = "KiB" }
Or as a string:
size = "10.0 KiB"
This will result in a size of 10,240 bytes.

Available size units

UnitNameSize in Bytes
BBYTE1
KiBKIBIBYTE1,024
MiBMEBIBYTE1,048,576
GiBGIBIBYTE1,073,741,824
kBKILOBYTE1,000
MBMEGABYTE1,000,000
GBGIGABYTE1,000,000,000
The size will be rounded to the nearest byte.