@mgcrea/triton-client
TypeScript icon, indicating that this package has built-in type declarations

0.4.2 • Public • Published

Triton Client

npm version npm total downloads npm monthly downloads npm license
build status dependencies status

Features

Typescript-ready client for Triton Inference Server

  • Promise-based API.
  • Relies on @grpc/proto-loader to generate matching types.
  • Built with TypeScript for static type checking with exported types along the library.

Usage

npm install @mgcrea/triton-client --save
# or
pnpm add @mgcrea/triton-client

Example

import { createClient } from "@mgcrea/triton-client";
import { formatWithOptions } from "node:util";

const client = createClient("localhost:8001");

const log = (...args: unknown[]) =>
  console.log(formatWithOptions({ depth: 10, colors: true }, ...args));

export const main = async () => {
  const live = await client.serverLive({});
  const ready = await client.serverReady({});
  const repositoryIndex = await client.repositoryIndex({});

  log({ live, ready, repositoryIndex });
};

Authors

License

The MIT License

Copyright (c) 2023 Olivier Louvignes <olivier@mgcrea.io>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i @mgcrea/triton-client

Weekly Downloads

9

Version

0.4.2

License

MIT

Unpacked Size

822 kB

Total Files

21

Last publish

Collaborators

  • mgcrea