Artifacts
Artifacts let you keep one graph pipeline while producing multiple output shapes.
Supported artifact kinds
jsonfor serialization and programmatic consumption.reportfor a human-readable markdown summary.wikifor a small file-based knowledge pack grouped by communities.htmlfor a quick interactive visualization.
Requesting artifacts
ts
const result = await graphBuilder.fromTexts(records, {
artifacts: ["json", "report", "wiki", "html"]
});Artifacts are returned in memory. Persisting them to disk or cloud storage stays the caller's responsibility.

