@llumiverse/core
Version:
Provide an universal API to LLMs. Support for existing LLMs can be added by writing a driver.
7 lines • 325 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getJSONSafetyNotice = getJSONSafetyNotice;
function getJSONSafetyNotice(schema) {
return "The answer must be a JSON object using the following JSON Schema:\n" + JSON.stringify(schema, undefined, 2);
}
//# sourceMappingURL=commons.js.map