Skip to main content

jammi-ai

The Python client (import jammi) for a Jammi engine — one connect(target) for local (embedded) and remote targets.

jammi-ai is the base client: 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. It also discovers the compiled in-process engine as an OPTIONAL backend: pip install jammi-ai[embedded] pulls jammi-ai-native, and then connect("file://…") resolves the local target to an in-process engine (direct FFI) through the SAME front door. Absent the extra, the base stays native-free and a file:// target raises a truthful NoEmbeddedEngineError.

One front door

import jammi

db = jammi.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 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 in-process engine (direct FFI) with the [embedded] extra installed; otherwise raises NoEmbeddedEngineError pointing at pip install jammi-ai[embedded]

Scaling local→remote is an env flip (connect(os.environ["JAMMI_TARGET"])) with no code change. The lean deploy build and the embedded build are ONE package — the same import jammi, connect unchanged — differing only by whether the [embedded] extra is present.

Generated from the canonical proto

The wire stubs under jammi/_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

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_ai-0.47.0-py3-none-any.whl (147.1 kB view details)

Uploaded Python 3

File details

Details for the file jammi_ai-0.47.0-py3-none-any.whl.

File metadata

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

File hashes

Hashes for jammi_ai-0.47.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f839d618cf240ecfb2bcd7be44c4a97460a5164b7a111daa6820bc09b129fb39
MD5 ecaeed3f9eb32fa583b2a20f5e16da36
BLAKE2b-256 a5d54deb85db694e3529a2e7fb4050cb4ae6f7d39df868e67add6cfb55d19184

See more details on using hashes here.

Provenance

The following attestation bundles were made for jammi_ai-0.47.0-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.

Release history Release notifications | RSS feed

This release

0.47.0 This release

1 file

0.46.0

1 file

0.45.0

1 file

0.44.0

1 file

0.43.0

1 file

0.42.0

1 file

0.41.0

1 file

0.40.0

1 file

0.39.0

1 file

0.38.0

1 file

0.37.0

1 file

0.36.0

1 file

0.35.0

1 file

0.34.0

1 file

0.33.0

3 files

0.32.1

3 files

0.32.0

3 files

0.31.0

3 files

0.30.0

3 files

0.29.0

3 files

0.28.0

3 files

0.26.5

3 files

0.26.4

3 files

0.26.3

3 files

0.26.2

3 files

0.26.1

3 files

0.26.0

3 files

0.25.0

3 files

0.24.0

3 files

0.23.0

3 files

0.22.0

3 files

0.21.0

3 files

0.20.0

3 files

0.19.0

3 files

0.18.0

3 files

0.17.0

3 files

0.16.0

3 files

0.15.0

3 files

0.14.0

3 files

0.13.0

3 files

0.12.1

3 files

0.12.0

3 files

0.11.0

3 files

0.10.0

3 files

0.9.0

3 files

0.8.0

3 files

0.7.0

3 files

0.5.9

3 files

0.5.8

3 files

0.5.7

3 files

0.5.4

3 files

0.5.0

3 files

0.3.0

3 files

0.2.0

3 files

0.1.9

3 files

0.1.8

3 files

0.1.7

3 files

0.1.6

3 files

0.1.5

3 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page