aee0f09db8
- Datafabrik: Dockerfile fix, agentorkestrering fungerar - Vision: Identify-modell, FAISS, OCR alla testade - API: Alla 7 integrationstester passerade - Upplösare: Entitetsupplösning verifierad
11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
'use strict'
|
|
|
|
const now = require('./now')
|
|
const parse = require('./parse')
|
|
|
|
const since = (nano) => now() - nano
|
|
|
|
exports.now = now
|
|
exports.since = since
|
|
exports.parse = parse
|