9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
|
import { nicelog } from '@/utils/nicelog'
|
||
|
import { getVectorDbStats } from './functions/getVectorDbStats'
|
||
|
;(async function () {
|
||
|
nicelog('• Checking vector db stats...')
|
||
|
await getVectorDbStats()
|
||
|
nicelog('✔ Complete!')
|
||
|
process.exit()
|
||
|
})()
|