Documentation
¶
Overview ¶
Package store persists eval run summaries in a local SQLite database.
The data layer uses modernc.org/sqlite: a pure-Go, zero-CGO build of SQLite so the binary keeps zero external runtime dependencies.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Run ¶
type Run struct {
ID int64
CreatedAt string
PromptPath string
Suite string
Models string
Passed int
Failed int
Skipped int
Total int
}
Run is a stored eval run summary.
Click to show internal directories.
Click to hide internal directories.