Comment

Peter Bengtsson

Note-to-self; the query:

select
    model, count(*),
    percentile_cont(0.5) within group (order by took_seconds) as p50,
    percentile_cont(0.9) within group (order by took_seconds) as p90
from llmcalls_llmcall group by model;