Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

telys

Public, thin SDK for Telys — embedded, on-device memory & retrieval. In-process, zero cloud roundtrips at query time.

This package contains only the developer-facing surface: the Telys/Collection facades, query/filter types, the EmbeddingProvider interface, the Tuner/TuningPlan interfaces, a runtime loader, and the telys CLI. It contains no engine implementation — the engine is a separate, closed, signed, on-device runtime fetched by telys runtime install (see DECISIONS D-30).

Install

As a CLI (recommended — isolated env, on your PATH, not pinned to one Python):

pipx install telys
# …or the one-liner (installs via pipx):
curl -fsSL https://telys.ai/install.sh | sh

telys login          # sign in → free device license + signed runtime; fully offline thereafter

As a library (to import telys in your own project):

python -m venv .venv && . .venv/bin/activate
pip install telys

Plain pip install --user telys works too, but pip may warn that its user-scripts dir isn't on your PATH (a macOS --user quirk) — pipx avoids that entirely. Runtime platforms: macOS arm64, Linux x86_64/arm64 (Windows: run under WSL2).

from telys import Telys
db = Telys("./memory")
col = db.create_collection("docs", dim=768, partition_by="tenant_id")   # dim is arbitrary — 384/768/1024/1536/3072…
col.add(vectors, ids=ids, metadata=metadata)          # bring your own vectors (embedding-agnostic, any dimension)
hits = col.search(qvec, where={"tenant_id": "acme"}, top_k=10, explain=True)

The runtime is required for execution; the embedder is optionalcol.add(vectors, …) and col.add_texts(…) both need the runtime, but only *_texts needs an embedder (bring your own via telys.embedding.CallableEmbedder, or use the on-device bigram embedder).

For local development, install the runtime as a package instead of via the CLI:

pip install "telys[runtime]"   # or: pip install telys-runtime

Download files

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

Source Distribution

telys-0.1.0b2.tar.gz (51.2 kB view details)

Uploaded Source

Built Distribution

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

telys-0.1.0b2-py3-none-any.whl (61.2 kB view details)

Uploaded Python 3

File details

Details for the file telys-0.1.0b2.tar.gz.

File metadata

  • Download URL: telys-0.1.0b2.tar.gz
  • Upload date:
  • Size: 51.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.5

File hashes

Hashes for telys-0.1.0b2.tar.gz
Algorithm Hash digest
SHA256 b701daf48570c3fe7109ab2a627a3ed322ae00ea5e3a75c98cc53d7b350da55d
MD5 771cf0e79d2829c0c32af5021d086123
BLAKE2b-256 f3d7a8fe491691608ddfe74ad26f0d30cf7a6620a0c973c7ccbfcbc978aea2cc

See more details on using hashes here.

File details

Details for the file telys-0.1.0b2-py3-none-any.whl.

File metadata

  • Download URL: telys-0.1.0b2-py3-none-any.whl
  • Upload date:
  • Size: 61.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.5

File hashes

Hashes for telys-0.1.0b2-py3-none-any.whl
Algorithm Hash digest
SHA256 764d25034ed58de9d711b660f3a969bc885377d06ff0611a3dcd6b26f06ef477
MD5 7c05f12e895ca97ca0b8596608ee70e1
BLAKE2b-256 499eb9db0abcec31b83ebac8eb1c3a48eea42599a4cae172493df1dbdc46c614

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.4

1 file

0.1.3

1 file

0.1.2

1 file

0.1.1

1 file

0.1.0

1 file

This release

0.1.0b2 This release

2 files

Supported by

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