MCPcopy Create free account
hub / github.com/openai/plugins / classifyEstimateAlignment

Function classifyEstimateAlignment

plugins/plugin-eval/src/core/observed-usage.js:33–41  ·  view source on GitHub ↗
(deltaRatio)

Source from the content-addressed store, hash-verified

31}
32
33function classifyEstimateAlignment(deltaRatio) {
34 if (deltaRatio <= 0.2) {
35 return "close";
36 }
37 if (deltaRatio <= 0.5) {
38 return "drift";
39 }
40 return "wide-drift";
41}
42
43function extractUsagePayload(candidate) {
44 if (!candidate || typeof candidate !== "object") {

Callers 1

analyzeObservedUsageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected