{"record":{"id":"072963aa5b0ea5fc","repo":"JuliusBrussee/caveman","slug":"message-count-d-outside-1-d","errorCode":null,"errorMessage":"message count %d outside 1..%d","messagePattern":"message count (.+?) outside 1\\.\\.(.+?)","errorType":"validation","errorClass":null,"httpStatus":null,"severity":"error","filePath":"cacheengine/cachebench/corpus.go","lineNumber":333,"sourceCode":"func validateCorpusWire(wire lmcacheRowWire, index int, limits CorpusLimits) (CorpusRow, error) {\n\tif !validBoundedText(wire.SessionID, 2048, false) || !validBoundedText(wire.Model, 512, false) {\n\t\treturn CorpusRow{}, errors.New(\"session_id and model required\")\n\t}\n\tif wire.OutputLength < 0 || math.IsNaN(wire.PreGap) || math.IsInf(wire.PreGap, 0) || wire.PreGap < 0 || wire.PreGap > maxCorpusGapSeconds {\n\t\treturn CorpusRow{}, fmt.Errorf(\"output_length must be non-negative and pre_gap must be within 0..%d seconds\", maxCorpusGapSeconds)\n\t}\n\tif len(wire.Input) == 0 || !json.Valid(wire.Input) {\n\t\treturn CorpusRow{}, errors.New(\"input must be valid non-empty message array\")\n\t}\n\tif len(wire.SessionID)+len(wire.Model)+len(wire.Input) > limits.MaxRowBytes {\n\t\treturn CorpusRow{}, fmt.Errorf(\"row exceeds byte limit %d\", limits.MaxRowBytes)\n\t}\n\tvar messages []CorpusMessage\n\tif err := json.Unmarshal(wire.Input, &messages); err != nil {\n\t\treturn CorpusRow{}, fmt.Errorf(\"decode input: %w\", err)\n\t}\n\tif len(messages) == 0 || len(messages) > limits.MaxMessagesPerRequest {\n\t\treturn CorpusRow{}, fmt.Errorf(\"message count %d outside 1..%d\", len(messages), limits.MaxMessagesPerRequest)\n\t}\n\tfor messageIndex, message := range messages {\n\t\tif err := validateCorpusMessage(message, limits); err != nil {\n\t\t\treturn CorpusRow{}, fmt.Errorf(\"message %d: %w\", messageIndex, err)\n\t\t}\n\t}\n\treturn CorpusRow{\n\t\tRowIndex: index, SessionID: wire.SessionID, Model: wire.Model, Input: messages,\n\t\tOutputLength: wire.OutputLength, PreGap: wire.PreGap,\n\t}, nil\n}\n\nfunc validateCorpusMessage(message CorpusMessage, limits CorpusLimits) error {\n\tswitch message.Role {\n\tcase \"system\", \"developer\", \"user\", \"assistant\", \"tool\":\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported role %q\", message.Role)\n\t}","sourceCodeStart":315,"sourceCodeEnd":351,"githubUrl":"https://github.com/JuliusBrussee/caveman/blob/27d5a3981a347890211bb1bf2439e5c821a63bc9/cacheengine/cachebench/corpus.go#L315-L351","documentation":"Error \"message count %d outside 1..%d\" thrown in JuliusBrussee/caveman.","triggerScenarios":"Thrown at cacheengine/cachebench/corpus.go:333 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Keep the message count within the allowed range."],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"27d5a3981a347890211bb1bf2439e5c821a63bc9","analyzedAt":"2026-08-15T09:26:11.751Z","schemaVersion":2},"datasetVersion":"2026-08-15T17:31:12.345Z"}