Skip to main content

Pure-Python gRPC client for a remote Jammi engine — the deploy half of jammi-ai

Project description

jammi-client

Pure-Python gRPC client for a remote Jammi engine — the deploy half of the develop→deploy journey.

jammi-ai runs an embedded engine in-process and bundles this client for its remote targets. jammi-client is the lean variant: a universal py3-none-any wheel that links no candle/ML stack — just grpcio + protobuf

  • pyarrow — for production where the engine runs behind a server.

One front door

import jammi_client

db = jammi_client.connect("https://engine.example.com")
db.add_source("patents", url="s3://corpus/patents.parquet", format="parquet")
db.generate_embeddings(source="patents", model="local:tiny_bert",
                       columns=["abstract"], key="id", modality="text")
q = db.encode_query(model="local:tiny_bert", query="quantum computing")
hits = db.search("patents", query=q, k=5)   # -> pyarrow.Table

connect(target) is the Python mirror of the Rust Jammi::open(Target): transport is config, not a code path.

Authenticated channels

A bearer-protected endpoint is reached by attaching credentials to the channel — the bearer rides the channel (attached once at connect), not threaded through every call:

from jammi_client import connect, BearerCredentials

db = connect("https://engine.example.com", credentials=BearerCredentials(token))

The same works on a plaintext grpc:// target for local development. The channel-level bearer covers the typed gRPC verbs; db.sql() (the Flight SQL lane) does not yet carry it — tracked at issue #96.

target transport
https://host / grpcs://host:8081 secure remote
http://host / grpc://host:8081 plaintext remote
file:///data local engine — not in this build; raises NoEmbeddedEngineError pointing at pip install jammi-ai

Scaling local→remote is an env flip (connect(os.environ["JAMMI_TARGET"])) with no code change. Productionising from the embed wheel to this lean client is a one-line import swap (import jammi_aiimport jammi_client), connect unchanged.

Generated from the canonical proto

The wire stubs under jammi_client/_generated/ are generated from the same jammi.v1 proto the engine, npm client, and embed wheel speak — one source, no parallel schema. Regenerate after a proto change:

pip install -e '.[dev]'
make generate

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jammi_client-0.26.4-py3-none-any.whl (98.4 kB view details)

Uploaded Python 3

File details

Details for the file jammi_client-0.26.4-py3-none-any.whl.

File metadata

  • Download URL: jammi_client-0.26.4-py3-none-any.whl
  • Upload date:
  • Size: 98.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jammi_client-0.26.4-py3-none-any.whl
Algorithm Hash digest
SHA256 0629f96ae61171ef911314d89590413a268c6ec86758bfca1f331ad8bdf873b2
MD5 701838ef57e9bf1749f53d6fdea6c20e
BLAKE2b-256 23694b8e172d1ba2826f3d01ab60be1706dec81e8b2645b5bcb56704e7ddc46e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jammi_client-0.26.4-py3-none-any.whl:

Publisher: pypi-client.yml on f-inverse/jammi-ai

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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