Skip to main content

AgentVec

The SQLite for mutable agent memory. A lightweight, serverless, embedded vector database written in pure Rust — built for AI agents that need to remember, forget, and update knowledge in real time.

No server. No cloud. No external dependencies. Just point it at a directory.

pip install agentvec
import agentvec

db = agentvec.AgentVec("./agent_memory.avdb")
memories = db.collection("episodic", dim=384, metric="cosine")

# Store a memory that expires in one hour
memories.add([0.1, 0.2, ...], {"event": "user said hello"}, ttl=3600)

# Recall the most similar memories
for r in memories.search(query_embedding, k=10):
    print(r.id, r.score, r.metadata)

Why AgentVec?

Most vector databases are built for search over static datasets — you index once and query forever. Agent memory is the opposite workload: it changes constantly. Agents add new observations every turn, update what they already know, and let stale context decay away.

AgentVec is designed for that mutable, transactional, row-oriented pattern instead of bulk analytics.

AgentVec LanceDB ChromaDB FAISS
Primary use Agent memory RAG / analytics Static search Batch search
Architecture Row-oriented Columnar Memory-first Index-only
Dependencies Zero (pure Rust) Arrow / C++ Python / C++ C++ / BLAS
In-place updates ACID Copy-on-write Variable Rebuild
TTL / expiry Native
Incremental index Yes Rebuild Variable Rebuild

Built for

  • AI agents — conversational memory, working memory, long-term knowledge
  • Local-first apps — no server, no network, just a directory on disk
  • Mutable workloads — frequent upserts, deletes, and TTL-based expiry
  • Embedded use — single library, low memory footprint, instant startup

Not built for

  • Billion-vector or distributed search (use Qdrant, Milvus, or Pinecone)
  • Heavy analytical queries over vectors (use LanceDB or DuckDB)
  • Static datasets you never update (use FAISS or usearch)
  • Multi-process concurrent access (AgentVec is single-process, multi-threaded)

Features

  • Memory decay (TTL) — give any record a time-to-live; expired memories are skipped on read and reclaimed on compact().
  • In-place upsertsupsert(id, ...) is idempotent and ACID-safe; update a memory without rebuilding anything.
  • HNSW approximate search — auto-enabled past a threshold, built in parallel across all cores, with incremental inserts (no full rebuilds) and on-disk persistence.
  • Metadata filtering — filter by metadata with $eq, $ne, $gt, $gte, $lt, $lte, $in, $nin.
  • Multiple distance metricscosine, dot, and l2 (Euclidean).
  • Crash-safe storage — vectors live in memory-mapped files for zero-copy reads; metadata lives in an ACID key-value store with checksums and a recovery path.
  • Product quantization — optional compression for larger collections.
  • Export / import — snapshot a collection to a file for backup or transfer.

Quick start

import agentvec

db = agentvec.AgentVec("./my_agent.avdb")

# Different memory types can use different embedding dimensions
episodic = db.collection("episodic", dim=384,  metric="cosine")   # conversations
semantic = db.collection("semantic", dim=1536, metric="cosine")   # knowledge
working  = db.collection("working",  dim=384,  metric="cosine")   # scratchpad

# Add a memory (auto-generated id, expires in 24h)
mem_id = episodic.add(vector, {"user": "alice", "type": "chat"}, ttl=86400)

# Update it later — same id, no rebuild
episodic.upsert("conv_turn_42", vector, {"summary": "discussed timeline"})

# Bulk insert is 10-100x faster than one-at-a-time
episodic.add_batch(vectors=[...], metadatas=[...])

# Search, filtered by metadata
results = episodic.search(query_vector, k=10, where_={"user": "alice"})

# Reclaim expired memories and flush to disk
episodic.compact()
db.sync()

Companion packages

AgentVec is the storage engine. Higher-level libraries build on top of it:

  • agentvec-memory — tiered agent memory (working / session / project / user) with pluggable embedders, so you store text and let it handle vectors and TTLs.
  • agentvec-mcp — a Model Context Protocol server that exposes AgentVec memory to MCP-compatible AI tools.

Documentation & source

License

Dual-licensed under either of MIT or Apache-2.0, at your option.

Release files for agentvec 0.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for agentvec 0.2.1
File Size Uploaded
agentvec-0.2.1.tar.gz 131.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for agentvec 0.2.1
File
agentvec-0.2.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
agentvec-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
agentvec-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
agentvec-0.2.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
agentvec-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
agentvec-0.2.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
agentvec-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
agentvec-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
agentvec-0.2.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
agentvec-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
agentvec-0.2.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
agentvec-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
agentvec-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
agentvec-0.2.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
agentvec-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
agentvec-0.2.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
agentvec-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
agentvec-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
agentvec-0.2.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
agentvec-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
agentvec-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
agentvec-0.2.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
agentvec-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
agentvec-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details

Total release size: 17.7 MB

Release files / agentvec-0.2.1.tar.gz

Download URL agentvec-0.2.1.tar.gz
Size 131.5 kB
Tags Source
SHA-256 checksum
How to use checksums
7153f6a3280a1e127011636aa9e07f562673228f09cfdf46d0f3ab7c43888f23
BLAKE2b-256 checksum
How to use checksums
88001004598e7e7a7f57b1bd71ea96b70af908c7ca2cb278cd266ac526db53e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp313-cp313-win_amd64.whl

Download URL agentvec-0.2.1-cp313-cp313-win_amd64.whl
Size 679.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7c46c78b546a2ec81c08b2f4a4d9a6cd167fdc3eff4a01081dbcd84ce4d562fe
BLAKE2b-256 checksum
How to use checksums
117d404f7a55e2712ff95d84e2122a85bc80feb6e624b866d72b94d6b5b18a07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL agentvec-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 794.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b740e5ce7cd087189d8f38796268a6d0782bb638f99c0a75a6d6019716e73c28
BLAKE2b-256 checksum
How to use checksums
032b85629eafd92b7b0f7635a84e3ba70d4337d56bb0b1814d14f013d97783dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL agentvec-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 741.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
342e0620bf6d16ebdd1352ac20fbf94e8fa206aea4d1069aa65c8169c6ac1a16
BLAKE2b-256 checksum
How to use checksums
095bcea8735654d1c8ede1c12f3a39b3842051db971d1a3ece8179696acdc578
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL agentvec-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Size 668.0 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7323b539acf898e05adffbed74cb94e08a58e4edb964908284793feed9eff722
BLAKE2b-256 checksum
How to use checksums
fb945a933a3d328f83eb3739e397ed91e2787a9713258b105a8fb3ebafc581a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl

Download URL agentvec-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Size 750.5 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
a4b52c106ef7a027eb0b501fde4121a1b8a3f6cf35ffed674a743e476ab79d49
BLAKE2b-256 checksum
How to use checksums
51974619aeceac78f8a201599a14cf48dd1810e176c644dcbfce2833b99a359c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp312-cp312-win_amd64.whl

Download URL agentvec-0.2.1-cp312-cp312-win_amd64.whl
Size 679.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
8e33e289f837c40e027d7c75d8aa28a63325ecc5e4c6c396792ec93ecbdbbc07
BLAKE2b-256 checksum
How to use checksums
76ab019211ec85f29b7c1d20d19fa287247636225ab0a756949bebd0056fb4ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL agentvec-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 794.5 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c8c5eb093d3479b28c17d3c1c2dd8fa63eae54bfebf76be6704fd27d84ad919e
BLAKE2b-256 checksum
How to use checksums
331f6492016812489a4c19c6280a08f1453cddc5207ea508a5e15e8619e50349
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL agentvec-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 741.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7de90003284586e1549090a25e04bb04ad758127e232c6a83250921744603a30
BLAKE2b-256 checksum
How to use checksums
d602ff06729ff9d19c4cfc1665da771f3cbde63ec56bd2a8968d4387980e4e2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL agentvec-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Size 668.0 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0bb49e001aa7a98de822d5651b74c93d7d4ac8e0be6882378a7340d1f159f168
BLAKE2b-256 checksum
How to use checksums
44eaea048ae97eedf21279920cbc91a687af7af550c3a2298578ff4a1e8371a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl

Download URL agentvec-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Size 750.5 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
be18114a692c19d402dad41ae7dbff6bfdf9975327451096bf688a23d1bf7523
BLAKE2b-256 checksum
How to use checksums
5f399e0b8b70e18a3b644271555675a78f7973ade026b2e13b80b32005c1d154
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp311-cp311-win_amd64.whl

Download URL agentvec-0.2.1-cp311-cp311-win_amd64.whl
Size 680.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0231483c078ee2d1d0bd640ddcb4f7d6d15e384645f6be1bdda9897b5034f75b
BLAKE2b-256 checksum
How to use checksums
51809be155a1ebd7eb7e39188ae86048dd013b0ecbf0cb2e1723339bd8326285
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL agentvec-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 796.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
24a1d655a3dceb50858b7be1cae215e8eb12ff0fbd40a057c540ec12c180065a
BLAKE2b-256 checksum
How to use checksums
7b76f7ae3a00029a64cb30035570ee608d70c00eaed709dc03ba2647c5c020bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL agentvec-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 742.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a6d0b6c0d6801c3c10dc1f31b981ed6fc038ee2432f590cf08023bd27772e244
BLAKE2b-256 checksum
How to use checksums
7f2a5ad624239c0c9d39551d547914da42764f306559ca1d0cf1eefbae89629b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL agentvec-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Size 668.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
22236fce4472209ef39902d5dff342022bf75a46f6abfe82aeb4b89d1161e7cd
BLAKE2b-256 checksum
How to use checksums
272fd92edf73012e4d4b89aa809e8e1a329de96773f01b5c5c6c711bb3d3c61f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl

Download URL agentvec-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Size 750.6 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
dbd839f3b1f8cdebcbe11f31a2905c538889915ab5ba2f6c391a9570b84918a8
BLAKE2b-256 checksum
How to use checksums
4bd2545fcb56b57b3a1fe2be28b38b554d22fc5829cf6b1afebc2e80049bc820
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp310-cp310-win_amd64.whl

Download URL agentvec-0.2.1-cp310-cp310-win_amd64.whl
Size 680.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6adbd5e393de7470f17c41a47f893661bc443732ef76c7ae2380c36b597ae1b4
BLAKE2b-256 checksum
How to use checksums
90b4f80e6df25b24f58c9027fcfd6af107b5eebb0d84d46edb20bf4bb9b99f02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL agentvec-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 796.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
57a6e41d56324c726ea006d04475e9432a79593eb41a428e99caafd0e2d82bfd
BLAKE2b-256 checksum
How to use checksums
a41c607a65ef02a70df7c02cdbc69aa05ab42cce6ce8a0d36c1cdac4af53fd19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL agentvec-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 742.8 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
70017d1d9c1457d7856df82923501da15d5227b258c5c68c4a35b44eb5e299cd
BLAKE2b-256 checksum
How to use checksums
8ee2caff79aa55544a8da97ae049b02b7497e67d71a21ca3de53dc7dfa0c726e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp39-cp39-win_amd64.whl

Download URL agentvec-0.2.1-cp39-cp39-win_amd64.whl
Size 681.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
c0fb035f5b2181f9a2a7e686d20eceed0adec74d8b66bb77f047f9158e23c72b
BLAKE2b-256 checksum
How to use checksums
0db0812911685b55688b0b26427f74cd221b3fe3f7637a150af3d546f11b35d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL agentvec-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 796.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e04c2e6da04c8f044e9fa26886f2ee2f0077a837a7fc5d6b0721c6350372fe05
BLAKE2b-256 checksum
How to use checksums
92459dfac0d9ec19701c0f41b34022ba6009bbfabdddcaa9a2c954080c47eba2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL agentvec-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 743.3 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3a3538a6bf49ea420609fce8409c1894c02f1072ac5fa8831dea43574220dc97
BLAKE2b-256 checksum
How to use checksums
120a96cc94c7d8fe1d40d75f9826048691d344bc59772e2969475036155ff54c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp38-cp38-win_amd64.whl

Download URL agentvec-0.2.1-cp38-cp38-win_amd64.whl
Size 681.4 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
dc3eda0d86f6b704b1a33455a561fa0eb13cd26cf90f5ae0c816e8c487a2a031
BLAKE2b-256 checksum
How to use checksums
fff49ae8fe72b3606e4bb411a25dd266cb45c7682b542e3bc43228184299f9d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL agentvec-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 797.0 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7a2d229022a3d38d628117008b166c2c8d5d46725f2b17bb04bca8544a51d206
BLAKE2b-256 checksum
How to use checksums
f6514732f583c42a23bb81ef1a713a9997aa681df63208e08b8dfe18a3580c85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release files / agentvec-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL agentvec-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 743.4 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0c15c8cb0e3178082316ea1abc53282b72af6afa8bfbd1e51ec26e2abda0bbc6
BLAKE2b-256 checksum
How to use checksums
7245a1fe69084270a66c7de51b249af4d924c281cfbd3d202d7f4fad32f105f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 28, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.1 This release

25 release 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