Skip to main content

A Pyodide python http client library and utilities for communicating with Triton Inference Server (based on tritonclient from NVIDIA)

Project description

Triton HTTP Client for Pyodide

A Pyodide python http client library and utilities for communicating with Triton Inference Server (based on tritonclient from NVIDIA).

This is a simplified implemetation of the triton client from NVIDIA, it works both in the browser with Pyodide Python or the native Python. It only implement the http client, and most of the API remains the similar but changed into async and with additional utility functions.

Usage

To use it in native CPython, you can install the package by running:

pip install pyotritonclient[native]

For Pyodide-based Python environment, for example: JupyterLite or Pyodide console, you can install the client by running the following python code:

import micropip
micropip.install("pyotritonclient")

To execute the model, we provide utility functions to make it much easier:

import numpy as np
from pyotritonclient import get_config, execute_model

# obtain the model config
config = await get_config('https://triton.imjoy.io', 'cellpose-cyto')

# create fake input tensors
input0 = np.zeros([2, 349, 467], dtype='float32')
input1 = np.array([30], dtype='float32')
# run inference
results = await execute_model([input0, input1], config=config)

You can access the lower level api, see the test example.

You can also find the official client examples demonstrate how to use the package to issue request to triton inference server. However, please notice that you will need to change the http client code into async style. For example, instead of doing client.infer(...), you need to do await client.infer(...).

The http client code is forked from triton client git repo since commit b3005f9db154247a4c792633e54f25f35ccadff0.

Server setup

Since we access the server from the browser environment which typically has more security restrictions, it is important that the server is configured to enable browser access.

Please make sure you configured following aspects:

  • The server must provide HTTPS endpoints instead of HTTP
  • The server should send the following headers:
    • Access-Control-Allow-Headers: Inference-Header-Content-Length,Accept-Encoding,Content-Encoding,Access-Control-Allow-Headers
    • Access-Control-Expose-Headers: Inference-Header-Content-Length,Range,Origin,Content-Type
    • Access-Control-Allow-Methods: GET,HEAD,OPTIONS,PUT,POST
    • Access-Control-Allow-Origin: * (This is optional depending on whether you want to support CORS)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyotritonclient-0.1.14.tar.gz (19.1 kB view details)

Uploaded Source

Built Distribution

pyotritonclient-0.1.14-py3-none-any.whl (21.4 kB view details)

Uploaded Python 3

File details

Details for the file pyotritonclient-0.1.14.tar.gz.

File metadata

  • Download URL: pyotritonclient-0.1.14.tar.gz
  • Upload date:
  • Size: 19.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.0.1 pkginfo/1.5.0.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.8

File hashes

Hashes for pyotritonclient-0.1.14.tar.gz
Algorithm Hash digest
SHA256 8dba8b36ee1c1c1e93f201458161b920acf602247a160d657b1b1929deb47564
MD5 5d39ed6bc6b6b8b33896f9719e8919fe
BLAKE2b-256 1cfac8e8fb73e6a645556d51abd04c1f08e7dcf23cfa6b8938e317e272a36af7

See more details on using hashes here.

File details

Details for the file pyotritonclient-0.1.14-py3-none-any.whl.

File metadata

  • Download URL: pyotritonclient-0.1.14-py3-none-any.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.0.1 pkginfo/1.5.0.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.8

File hashes

Hashes for pyotritonclient-0.1.14-py3-none-any.whl
Algorithm Hash digest
SHA256 885a73668c8c5a99466a6998323ee230f3d258977f0a68e768f61dbff1cee4bc
MD5 09f0542ba322b9201f35e806723b8040
BLAKE2b-256 f8af0ed8c27620170931a2b506ed8ed9834b3371cd61ab265bf01c17fa76dcfb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page