UNPKG

@cyclonedx/cdxgen

Version:

Creates CycloneDX Software Bill of Materials (SBOM) from source or container image

22 lines 551 B
/** * Parse an Ollama Modelfile into reusable model metadata. * * @param {string} raw Modelfile contents * @returns {{ * adapters: string[], * from?: string, * license?: string, * parameters: Record<string, string>, * system?: string, * template?: string, * }} parsed model metadata */ export function parseOllamaModelfile(raw: string): { adapters: string[]; from?: string; license?: string; parameters: Record<string, string>; system?: string; template?: string; }; //# sourceMappingURL=ollama.d.ts.map