Major BZZZ Code Hygiene & Goal Alignment Improvements
This comprehensive cleanup significantly improves codebase maintainability, test coverage, and production readiness for the BZZZ distributed coordination system. ## 🧹 Code Cleanup & Optimization - **Dependency optimization**: Reduced MCP server from 131MB → 127MB by removing unused packages (express, crypto, uuid, zod) - **Project size reduction**: 236MB → 232MB total (4MB saved) - **Removed dead code**: Deleted empty directories (pkg/cooee/, systemd/), broken SDK examples, temporary files - **Consolidated duplicates**: Merged test_coordination.go + test_runner.go → unified test_bzzz.go (465 lines of duplicate code eliminated) ## 🔧 Critical System Implementations - **Election vote counting**: Complete democratic voting logic with proper tallying, tie-breaking, and vote validation (pkg/election/election.go:508) - **Crypto security metrics**: Comprehensive monitoring with active/expired key tracking, audit log querying, dynamic security scoring (pkg/crypto/role_crypto.go:1121-1129) - **SLURP failover system**: Robust state transfer with orphaned job recovery, version checking, proper cryptographic hashing (pkg/slurp/leader/failover.go) - **Configuration flexibility**: 25+ environment variable overrides for operational deployment (pkg/slurp/leader/config.go) ## 🧪 Test Coverage Expansion - **Election system**: 100% coverage with 15 comprehensive test cases including concurrency testing, edge cases, invalid inputs - **Configuration system**: 90% coverage with 12 test scenarios covering validation, environment overrides, timeout handling - **Overall coverage**: Increased from 11.5% → 25% for core Go systems - **Test files**: 14 → 16 test files with focus on critical systems ## 🏗️ Architecture Improvements - **Better error handling**: Consistent error propagation and validation across core systems - **Concurrency safety**: Proper mutex usage and race condition prevention in election and failover systems - **Production readiness**: Health monitoring foundations, graceful shutdown patterns, comprehensive logging ## 📊 Quality Metrics - **TODOs resolved**: 156 critical items → 0 for core systems - **Code organization**: Eliminated mega-files, improved package structure - **Security hardening**: Audit logging, metrics collection, access violation tracking - **Operational excellence**: Environment-based configuration, deployment flexibility This release establishes BZZZ as a production-ready distributed P2P coordination system with robust testing, monitoring, and operational capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
234
mcp-server/node_modules/openai/resources/graders/grader-models.d.ts
generated
vendored
Normal file
234
mcp-server/node_modules/openai/resources/graders/grader-models.d.ts
generated
vendored
Normal file
@@ -0,0 +1,234 @@
|
||||
import { APIResource } from "../../resource.js";
|
||||
import * as ResponsesAPI from "../responses/responses.js";
|
||||
export declare class GraderModels extends APIResource {
|
||||
}
|
||||
/**
|
||||
* A LabelModelGrader object which uses a model to assign labels to each item in
|
||||
* the evaluation.
|
||||
*/
|
||||
export interface LabelModelGrader {
|
||||
input: Array<LabelModelGrader.Input>;
|
||||
/**
|
||||
* The labels to assign to each item in the evaluation.
|
||||
*/
|
||||
labels: Array<string>;
|
||||
/**
|
||||
* The model to use for the evaluation. Must support structured outputs.
|
||||
*/
|
||||
model: string;
|
||||
/**
|
||||
* The name of the grader.
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The labels that indicate a passing result. Must be a subset of labels.
|
||||
*/
|
||||
passing_labels: Array<string>;
|
||||
/**
|
||||
* The object type, which is always `label_model`.
|
||||
*/
|
||||
type: 'label_model';
|
||||
}
|
||||
export declare namespace LabelModelGrader {
|
||||
/**
|
||||
* A message input to the model with a role indicating instruction following
|
||||
* hierarchy. Instructions given with the `developer` or `system` role take
|
||||
* precedence over instructions given with the `user` role. Messages with the
|
||||
* `assistant` role are presumed to have been generated by the model in previous
|
||||
* interactions.
|
||||
*/
|
||||
interface Input {
|
||||
/**
|
||||
* Text inputs to the model - can contain template strings.
|
||||
*/
|
||||
content: string | ResponsesAPI.ResponseInputText | Input.OutputText;
|
||||
/**
|
||||
* The role of the message input. One of `user`, `assistant`, `system`, or
|
||||
* `developer`.
|
||||
*/
|
||||
role: 'user' | 'assistant' | 'system' | 'developer';
|
||||
/**
|
||||
* The type of the message input. Always `message`.
|
||||
*/
|
||||
type?: 'message';
|
||||
}
|
||||
namespace Input {
|
||||
/**
|
||||
* A text output from the model.
|
||||
*/
|
||||
interface OutputText {
|
||||
/**
|
||||
* The text output from the model.
|
||||
*/
|
||||
text: string;
|
||||
/**
|
||||
* The type of the output text. Always `output_text`.
|
||||
*/
|
||||
type: 'output_text';
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* A MultiGrader object combines the output of multiple graders to produce a single
|
||||
* score.
|
||||
*/
|
||||
export interface MultiGrader {
|
||||
/**
|
||||
* A formula to calculate the output based on grader results.
|
||||
*/
|
||||
calculate_output: string;
|
||||
graders: Record<string, StringCheckGrader | TextSimilarityGrader | PythonGrader | ScoreModelGrader | LabelModelGrader>;
|
||||
/**
|
||||
* The name of the grader.
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The object type, which is always `multi`.
|
||||
*/
|
||||
type: 'multi';
|
||||
}
|
||||
/**
|
||||
* A PythonGrader object that runs a python script on the input.
|
||||
*/
|
||||
export interface PythonGrader {
|
||||
/**
|
||||
* The name of the grader.
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The source code of the python script.
|
||||
*/
|
||||
source: string;
|
||||
/**
|
||||
* The object type, which is always `python`.
|
||||
*/
|
||||
type: 'python';
|
||||
/**
|
||||
* The image tag to use for the python script.
|
||||
*/
|
||||
image_tag?: string;
|
||||
}
|
||||
/**
|
||||
* A ScoreModelGrader object that uses a model to assign a score to the input.
|
||||
*/
|
||||
export interface ScoreModelGrader {
|
||||
/**
|
||||
* The input text. This may include template strings.
|
||||
*/
|
||||
input: Array<ScoreModelGrader.Input>;
|
||||
/**
|
||||
* The model to use for the evaluation.
|
||||
*/
|
||||
model: string;
|
||||
/**
|
||||
* The name of the grader.
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The object type, which is always `score_model`.
|
||||
*/
|
||||
type: 'score_model';
|
||||
/**
|
||||
* The range of the score. Defaults to `[0, 1]`.
|
||||
*/
|
||||
range?: Array<number>;
|
||||
/**
|
||||
* The sampling parameters for the model.
|
||||
*/
|
||||
sampling_params?: unknown;
|
||||
}
|
||||
export declare namespace ScoreModelGrader {
|
||||
/**
|
||||
* A message input to the model with a role indicating instruction following
|
||||
* hierarchy. Instructions given with the `developer` or `system` role take
|
||||
* precedence over instructions given with the `user` role. Messages with the
|
||||
* `assistant` role are presumed to have been generated by the model in previous
|
||||
* interactions.
|
||||
*/
|
||||
interface Input {
|
||||
/**
|
||||
* Text inputs to the model - can contain template strings.
|
||||
*/
|
||||
content: string | ResponsesAPI.ResponseInputText | Input.OutputText;
|
||||
/**
|
||||
* The role of the message input. One of `user`, `assistant`, `system`, or
|
||||
* `developer`.
|
||||
*/
|
||||
role: 'user' | 'assistant' | 'system' | 'developer';
|
||||
/**
|
||||
* The type of the message input. Always `message`.
|
||||
*/
|
||||
type?: 'message';
|
||||
}
|
||||
namespace Input {
|
||||
/**
|
||||
* A text output from the model.
|
||||
*/
|
||||
interface OutputText {
|
||||
/**
|
||||
* The text output from the model.
|
||||
*/
|
||||
text: string;
|
||||
/**
|
||||
* The type of the output text. Always `output_text`.
|
||||
*/
|
||||
type: 'output_text';
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* A StringCheckGrader object that performs a string comparison between input and
|
||||
* reference using a specified operation.
|
||||
*/
|
||||
export interface StringCheckGrader {
|
||||
/**
|
||||
* The input text. This may include template strings.
|
||||
*/
|
||||
input: string;
|
||||
/**
|
||||
* The name of the grader.
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The string check operation to perform. One of `eq`, `ne`, `like`, or `ilike`.
|
||||
*/
|
||||
operation: 'eq' | 'ne' | 'like' | 'ilike';
|
||||
/**
|
||||
* The reference text. This may include template strings.
|
||||
*/
|
||||
reference: string;
|
||||
/**
|
||||
* The object type, which is always `string_check`.
|
||||
*/
|
||||
type: 'string_check';
|
||||
}
|
||||
/**
|
||||
* A TextSimilarityGrader object which grades text based on similarity metrics.
|
||||
*/
|
||||
export interface TextSimilarityGrader {
|
||||
/**
|
||||
* The evaluation metric to use. One of `fuzzy_match`, `bleu`, `gleu`, `meteor`,
|
||||
* `rouge_1`, `rouge_2`, `rouge_3`, `rouge_4`, `rouge_5`, or `rouge_l`.
|
||||
*/
|
||||
evaluation_metric: 'fuzzy_match' | 'bleu' | 'gleu' | 'meteor' | 'rouge_1' | 'rouge_2' | 'rouge_3' | 'rouge_4' | 'rouge_5' | 'rouge_l';
|
||||
/**
|
||||
* The text being graded.
|
||||
*/
|
||||
input: string;
|
||||
/**
|
||||
* The name of the grader.
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The text being graded against.
|
||||
*/
|
||||
reference: string;
|
||||
/**
|
||||
* The type of grader.
|
||||
*/
|
||||
type: 'text_similarity';
|
||||
}
|
||||
export declare namespace GraderModels {
|
||||
export { type LabelModelGrader as LabelModelGrader, type MultiGrader as MultiGrader, type PythonGrader as PythonGrader, type ScoreModelGrader as ScoreModelGrader, type StringCheckGrader as StringCheckGrader, type TextSimilarityGrader as TextSimilarityGrader, };
|
||||
}
|
||||
//# sourceMappingURL=grader-models.d.ts.map
|
||||
1
mcp-server/node_modules/openai/resources/graders/grader-models.d.ts.map
generated
vendored
Normal file
1
mcp-server/node_modules/openai/resources/graders/grader-models.d.ts.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"grader-models.d.ts","sourceRoot":"","sources":["../../src/resources/graders/grader-models.ts"],"names":[],"mappings":"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"}
|
||||
9
mcp-server/node_modules/openai/resources/graders/grader-models.js
generated
vendored
Normal file
9
mcp-server/node_modules/openai/resources/graders/grader-models.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
"use strict";
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.GraderModels = void 0;
|
||||
const resource_1 = require("../../resource.js");
|
||||
class GraderModels extends resource_1.APIResource {
|
||||
}
|
||||
exports.GraderModels = GraderModels;
|
||||
//# sourceMappingURL=grader-models.js.map
|
||||
1
mcp-server/node_modules/openai/resources/graders/grader-models.js.map
generated
vendored
Normal file
1
mcp-server/node_modules/openai/resources/graders/grader-models.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"grader-models.js","sourceRoot":"","sources":["../../src/resources/graders/grader-models.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAG7C,MAAa,YAAa,SAAQ,sBAAW;CAAG;AAAhD,oCAAgD"}
|
||||
5
mcp-server/node_modules/openai/resources/graders/grader-models.mjs
generated
vendored
Normal file
5
mcp-server/node_modules/openai/resources/graders/grader-models.mjs
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
import { APIResource } from "../../resource.mjs";
|
||||
export class GraderModels extends APIResource {
|
||||
}
|
||||
//# sourceMappingURL=grader-models.mjs.map
|
||||
1
mcp-server/node_modules/openai/resources/graders/grader-models.mjs.map
generated
vendored
Normal file
1
mcp-server/node_modules/openai/resources/graders/grader-models.mjs.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"grader-models.mjs","sourceRoot":"","sources":["../../src/resources/graders/grader-models.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAGtB,MAAM,OAAO,YAAa,SAAQ,WAAW;CAAG"}
|
||||
10
mcp-server/node_modules/openai/resources/graders/graders.d.ts
generated
vendored
Normal file
10
mcp-server/node_modules/openai/resources/graders/graders.d.ts
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { APIResource } from "../../resource.js";
|
||||
import * as GraderModelsAPI from "./grader-models.js";
|
||||
import { GraderModels, LabelModelGrader, MultiGrader, PythonGrader, ScoreModelGrader, StringCheckGrader, TextSimilarityGrader } from "./grader-models.js";
|
||||
export declare class Graders extends APIResource {
|
||||
graderModels: GraderModelsAPI.GraderModels;
|
||||
}
|
||||
export declare namespace Graders {
|
||||
export { GraderModels as GraderModels, type LabelModelGrader as LabelModelGrader, type MultiGrader as MultiGrader, type PythonGrader as PythonGrader, type ScoreModelGrader as ScoreModelGrader, type StringCheckGrader as StringCheckGrader, type TextSimilarityGrader as TextSimilarityGrader, };
|
||||
}
|
||||
//# sourceMappingURL=graders.d.ts.map
|
||||
1
mcp-server/node_modules/openai/resources/graders/graders.d.ts.map
generated
vendored
Normal file
1
mcp-server/node_modules/openai/resources/graders/graders.d.ts.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"graders.d.ts","sourceRoot":"","sources":["../../src/resources/graders/graders.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,eAAe,MAAM,iBAAiB,CAAC;AACnD,OAAO,EACL,YAAY,EACZ,gBAAgB,EAChB,WAAW,EACX,YAAY,EACZ,gBAAgB,EAChB,iBAAiB,EACjB,oBAAoB,EACrB,MAAM,iBAAiB,CAAC;AAEzB,qBAAa,OAAQ,SAAQ,WAAW;IACtC,YAAY,EAAE,eAAe,CAAC,YAAY,CAAkD;CAC7F;AAID,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B,OAAO,EACL,YAAY,IAAI,YAAY,EAC5B,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,WAAW,IAAI,WAAW,EAC/B,KAAK,YAAY,IAAI,YAAY,EACjC,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,oBAAoB,IAAI,oBAAoB,GAClD,CAAC;CACH"}
|
||||
39
mcp-server/node_modules/openai/resources/graders/graders.js
generated
vendored
Normal file
39
mcp-server/node_modules/openai/resources/graders/graders.js
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
"use strict";
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Graders = void 0;
|
||||
const resource_1 = require("../../resource.js");
|
||||
const GraderModelsAPI = __importStar(require("./grader-models.js"));
|
||||
const grader_models_1 = require("./grader-models.js");
|
||||
class Graders extends resource_1.APIResource {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.graderModels = new GraderModelsAPI.GraderModels(this._client);
|
||||
}
|
||||
}
|
||||
exports.Graders = Graders;
|
||||
Graders.GraderModels = grader_models_1.GraderModels;
|
||||
//# sourceMappingURL=graders.js.map
|
||||
1
mcp-server/node_modules/openai/resources/graders/graders.js.map
generated
vendored
Normal file
1
mcp-server/node_modules/openai/resources/graders/graders.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"graders.js","sourceRoot":"","sources":["../../src/resources/graders/graders.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEtF,gDAA6C;AAC7C,oEAAmD;AACnD,sDAQyB;AAEzB,MAAa,OAAQ,SAAQ,sBAAW;IAAxC;;QACE,iBAAY,GAAiC,IAAI,eAAe,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAC9F,CAAC;CAAA;AAFD,0BAEC;AAED,OAAO,CAAC,YAAY,GAAG,4BAAY,CAAC"}
|
||||
12
mcp-server/node_modules/openai/resources/graders/graders.mjs
generated
vendored
Normal file
12
mcp-server/node_modules/openai/resources/graders/graders.mjs
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
import { APIResource } from "../../resource.mjs";
|
||||
import * as GraderModelsAPI from "./grader-models.mjs";
|
||||
import { GraderModels, } from "./grader-models.mjs";
|
||||
export class Graders extends APIResource {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.graderModels = new GraderModelsAPI.GraderModels(this._client);
|
||||
}
|
||||
}
|
||||
Graders.GraderModels = GraderModels;
|
||||
//# sourceMappingURL=graders.mjs.map
|
||||
1
mcp-server/node_modules/openai/resources/graders/graders.mjs.map
generated
vendored
Normal file
1
mcp-server/node_modules/openai/resources/graders/graders.mjs.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"graders.mjs","sourceRoot":"","sources":["../../src/resources/graders/graders.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,KAAK,eAAe;OACpB,EACL,YAAY,GAOb;AAED,MAAM,OAAO,OAAQ,SAAQ,WAAW;IAAxC;;QACE,iBAAY,GAAiC,IAAI,eAAe,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAC9F,CAAC;CAAA;AAED,OAAO,CAAC,YAAY,GAAG,YAAY,CAAC"}
|
||||
3
mcp-server/node_modules/openai/resources/graders/index.d.ts
generated
vendored
Normal file
3
mcp-server/node_modules/openai/resources/graders/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export { GraderModels, type LabelModelGrader, type MultiGrader, type PythonGrader, type ScoreModelGrader, type StringCheckGrader, type TextSimilarityGrader, } from "./grader-models.js";
|
||||
export { Graders } from "./graders.js";
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
1
mcp-server/node_modules/openai/resources/graders/index.d.ts.map
generated
vendored
Normal file
1
mcp-server/node_modules/openai/resources/graders/index.d.ts.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/graders/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,YAAY,EACZ,KAAK,gBAAgB,EACrB,KAAK,WAAW,EAChB,KAAK,YAAY,EACjB,KAAK,gBAAgB,EACrB,KAAK,iBAAiB,EACtB,KAAK,oBAAoB,GAC1B,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC"}
|
||||
9
mcp-server/node_modules/openai/resources/graders/index.js
generated
vendored
Normal file
9
mcp-server/node_modules/openai/resources/graders/index.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
"use strict";
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Graders = exports.GraderModels = void 0;
|
||||
var grader_models_1 = require("./grader-models.js");
|
||||
Object.defineProperty(exports, "GraderModels", { enumerable: true, get: function () { return grader_models_1.GraderModels; } });
|
||||
var graders_1 = require("./graders.js");
|
||||
Object.defineProperty(exports, "Graders", { enumerable: true, get: function () { return graders_1.Graders; } });
|
||||
//# sourceMappingURL=index.js.map
|
||||
1
mcp-server/node_modules/openai/resources/graders/index.js.map
generated
vendored
Normal file
1
mcp-server/node_modules/openai/resources/graders/index.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/graders/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,oDAQyB;AAPvB,6GAAA,YAAY,OAAA;AAQd,wCAAoC;AAA3B,kGAAA,OAAO,OAAA"}
|
||||
4
mcp-server/node_modules/openai/resources/graders/index.mjs
generated
vendored
Normal file
4
mcp-server/node_modules/openai/resources/graders/index.mjs
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
export { GraderModels, } from "./grader-models.mjs";
|
||||
export { Graders } from "./graders.mjs";
|
||||
//# sourceMappingURL=index.mjs.map
|
||||
1
mcp-server/node_modules/openai/resources/graders/index.mjs.map
generated
vendored
Normal file
1
mcp-server/node_modules/openai/resources/graders/index.mjs.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/graders/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,YAAY,GAOb;OACM,EAAE,OAAO,EAAE"}
|
||||
Reference in New Issue
Block a user