Initial commit: KidsAI Explorer with complete functionality
- Complete KidsAI Explorer application - Multi-language support (English/German) - AI-powered educational guidance using OpenAI - Interactive chat interface for children - Proper placeholder translation fixes - Mobile-responsive design - Educational framework for critical thinking
This commit is contained in:
42
node_modules/openai/_vendor/zod-to-json-schema/Options.js
generated
vendored
Normal file
42
node_modules/openai/_vendor/zod-to-json-schema/Options.js
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.getDefaultOptions = exports.ignoreOverride = void 0;
|
||||
exports.ignoreOverride = Symbol('Let zodToJsonSchema decide on which parser to use');
|
||||
const defaultOptions = {
|
||||
name: undefined,
|
||||
$refStrategy: 'root',
|
||||
effectStrategy: 'input',
|
||||
pipeStrategy: 'all',
|
||||
dateStrategy: 'format:date-time',
|
||||
mapStrategy: 'entries',
|
||||
nullableStrategy: 'from-target',
|
||||
removeAdditionalStrategy: 'passthrough',
|
||||
definitionPath: 'definitions',
|
||||
target: 'jsonSchema7',
|
||||
strictUnions: false,
|
||||
errorMessages: false,
|
||||
markdownDescription: false,
|
||||
patternStrategy: 'escape',
|
||||
applyRegexFlags: false,
|
||||
emailStrategy: 'format:email',
|
||||
base64Strategy: 'contentEncoding:base64',
|
||||
nameStrategy: 'ref',
|
||||
};
|
||||
const getDefaultOptions = (options) => {
|
||||
// We need to add `definitions` here as we may mutate it
|
||||
return (typeof options === 'string' ?
|
||||
{
|
||||
...defaultOptions,
|
||||
basePath: ['#'],
|
||||
definitions: {},
|
||||
name: options,
|
||||
}
|
||||
: {
|
||||
...defaultOptions,
|
||||
basePath: ['#'],
|
||||
definitions: {},
|
||||
...options,
|
||||
});
|
||||
};
|
||||
exports.getDefaultOptions = getDefaultOptions;
|
||||
//# sourceMappingURL=Options.js.map
|
||||
Reference in New Issue
Block a user