docs: add accuracy per 1k tokens report (closes #72)

This commit is contained in:
Johann Schopplich
2025-11-05 08:21:57 +01:00
parent 9268fdf3ef
commit af17efe128
8 changed files with 413 additions and 180 deletions

View File

@@ -32,3 +32,10 @@ export interface FormatResult {
correctCount: number
totalCount: number
}
export interface EfficiencyRanking {
format: string
efficiency: number
accuracy: number
tokens: number
}