redisai-js
Version:
A high-performance Typescript client for RedisAI
21 lines (18 loc) • 478 B
TypeScript
/// <reference types="node" />
/**
* Direct mapping to RedisAI Model
*/
import {Backend} from './Backend';
export declare class Model {
backend: Backend;
device: string;
inputs: string[];
outputs: string[];
blob: Buffer | undefined;
private _backend;
private _device;
private _inputs;
private _outputs;
private _blob;
constructor(backend: Backend, device: string, inputs: string[], outputs: string[], blob: Buffer | undefined);
}