UNPKG

inference-server

Version:

Libraries and server to build AI applications. Adapters to various native bindings allowing local inference. Integrate it with your application, or use as a microservice.

19 lines (17 loc) 289 B
import { defineConfig } from 'vitest/config' export default defineConfig({ test: { pool: 'forks', maxWorkers: 1, minWorkers: 1, maxConcurrency: 1, testTimeout: 60000, hookTimeout: 120000, poolOptions: { threads: { minThreads: 1, maxThreads: 1, }, }, }, })