provider:
{{ m.provider }}
model_id:
{{ m.model_id }}
api_key_env:
{{ m.api_key_env }}
{% if m.api_base %}
api_base:
{{ m.api_base }}
{% endif %}
context:
{{ "{:,}".format(m.context_window) if m.context_window else 'unset' }}
timeout:
{{ m.timeout }}s
max out:
{{ m.max_out_configured if m.max_out_configured else 'unset' }}
/{{ "{:,}".format(m.max_out_stated) if m.max_out_stated else '?' }}
cost in:
{{ m.cost_per_1k_input if m.cost_per_1k_input is not none else 'unset' }}
cost out:
{{ m.cost_per_1k_output if m.cost_per_1k_output is not none else 'unset' }}
per 1K tokens
{% if m.use_completion_tokens %}
use_completion_tokens: true
{% endif %}