18 lines
471 B
TOML
18 lines
471 B
TOML
base_model = "xai/grok-4.3"
|
|
|
|
# Grok 4.3 meaningfully supports native low/medium/high; xhigh/max normalize to
|
|
# high, and "off" is Auriko's normalized disable value.
|
|
# https://docs.auriko.ai/guides/extensions-and-thinking
|
|
reasoning_options = [{ type = "toggle" }, { type = "effort", values = ["low", "medium", "high"] }]
|
|
|
|
[cost]
|
|
input = 1.25
|
|
output = 2.5
|
|
cache_read = 0.2
|
|
|
|
[[cost.tiers]]
|
|
tier = { type = "context", size = 200_000 }
|
|
input = 2.5
|
|
output = 5
|
|
cache_read = 0.4
|