Skip to main content

Embedded, serverless vector database for mutable AI agent memory — pure Rust, with native TTL, in-place upserts, and incremental HNSW search

Project description

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.

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

agentvec-0.2.1.tar.gz (131.5 kB view details)

Uploaded Source

Built Distributions

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

agentvec-0.2.1-cp313-cp313-win_amd64.whl (679.7 kB view details)

Uploaded CPython 3.13Windows x86-64

agentvec-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

agentvec-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (741.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

agentvec-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (668.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

agentvec-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

agentvec-0.2.1-cp312-cp312-win_amd64.whl (679.8 kB view details)

Uploaded CPython 3.12Windows x86-64

agentvec-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

agentvec-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (741.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

agentvec-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (668.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

agentvec-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

agentvec-0.2.1-cp311-cp311-win_amd64.whl (680.6 kB view details)

Uploaded CPython 3.11Windows x86-64

agentvec-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

agentvec-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (742.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

agentvec-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (668.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

agentvec-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

agentvec-0.2.1-cp310-cp310-win_amd64.whl (680.8 kB view details)

Uploaded CPython 3.10Windows x86-64

agentvec-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

agentvec-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (742.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

agentvec-0.2.1-cp39-cp39-win_amd64.whl (681.2 kB view details)

Uploaded CPython 3.9Windows x86-64

agentvec-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

agentvec-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (743.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

agentvec-0.2.1-cp38-cp38-win_amd64.whl (681.4 kB view details)

Uploaded CPython 3.8Windows x86-64

agentvec-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

agentvec-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (743.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file agentvec-0.2.1.tar.gz.

File metadata

  • Download URL: agentvec-0.2.1.tar.gz
  • Upload date:
  • Size: 131.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agentvec-0.2.1.tar.gz
Algorithm Hash digest
SHA256 7153f6a3280a1e127011636aa9e07f562673228f09cfdf46d0f3ab7c43888f23
MD5 501f54f68ee3cdcabade7cc09590dcf6
BLAKE2b-256 88001004598e7e7a7f57b1bd71ea96b70af908c7ca2cb278cd266ac526db53e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1.tar.gz:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: agentvec-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 679.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agentvec-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7c46c78b546a2ec81c08b2f4a4d9a6cd167fdc3eff4a01081dbcd84ce4d562fe
MD5 d82cd197b13f6e720282412412bfb7a3
BLAKE2b-256 117d404f7a55e2712ff95d84e2122a85bc80feb6e624b866d72b94d6b5b18a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b740e5ce7cd087189d8f38796268a6d0782bb638f99c0a75a6d6019716e73c28
MD5 e444b528d5854e4dff9a51aa1ccaca7d
BLAKE2b-256 032b85629eafd92b7b0f7635a84e3ba70d4337d56bb0b1814d14f013d97783dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 342e0620bf6d16ebdd1352ac20fbf94e8fa206aea4d1069aa65c8169c6ac1a16
MD5 e0a51ad8123c6585747c090f9d4ccd20
BLAKE2b-256 095bcea8735654d1c8ede1c12f3a39b3842051db971d1a3ece8179696acdc578

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7323b539acf898e05adffbed74cb94e08a58e4edb964908284793feed9eff722
MD5 1b10cbf18d6533d1589483ef6f0c5ae0
BLAKE2b-256 fb945a933a3d328f83eb3739e397ed91e2787a9713258b105a8fb3ebafc581a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4b52c106ef7a027eb0b501fde4121a1b8a3f6cf35ffed674a743e476ab79d49
MD5 cf30bc73298188d4991cb1cef14e58fb
BLAKE2b-256 51974619aeceac78f8a201599a14cf48dd1810e176c644dcbfce2833b99a359c

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: agentvec-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 679.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agentvec-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8e33e289f837c40e027d7c75d8aa28a63325ecc5e4c6c396792ec93ecbdbbc07
MD5 4620c88a2ff302e7034291ba40b52dff
BLAKE2b-256 76ab019211ec85f29b7c1d20d19fa287247636225ab0a756949bebd0056fb4ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8c5eb093d3479b28c17d3c1c2dd8fa63eae54bfebf76be6704fd27d84ad919e
MD5 a93d169aed07ac5ce6091fec5054a3b3
BLAKE2b-256 331f6492016812489a4c19c6280a08f1453cddc5207ea508a5e15e8619e50349

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7de90003284586e1549090a25e04bb04ad758127e232c6a83250921744603a30
MD5 6084d64619bb661c391937bc279953e8
BLAKE2b-256 d602ff06729ff9d19c4cfc1665da771f3cbde63ec56bd2a8968d4387980e4e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bb49e001aa7a98de822d5651b74c93d7d4ac8e0be6882378a7340d1f159f168
MD5 432fec12aef705499d6a9687a8e6d070
BLAKE2b-256 44eaea048ae97eedf21279920cbc91a687af7af550c3a2298578ff4a1e8371a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be18114a692c19d402dad41ae7dbff6bfdf9975327451096bf688a23d1bf7523
MD5 09573111d452e9f8c84885740d3cd229
BLAKE2b-256 5f399e0b8b70e18a3b644271555675a78f7973ade026b2e13b80b32005c1d154

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: agentvec-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 680.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agentvec-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0231483c078ee2d1d0bd640ddcb4f7d6d15e384645f6be1bdda9897b5034f75b
MD5 5abd880207d9fb8087b0402937f50643
BLAKE2b-256 51809be155a1ebd7eb7e39188ae86048dd013b0ecbf0cb2e1723339bd8326285

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24a1d655a3dceb50858b7be1cae215e8eb12ff0fbd40a057c540ec12c180065a
MD5 83659da104d187e871c9052cf2a6d563
BLAKE2b-256 7b76f7ae3a00029a64cb30035570ee608d70c00eaed709dc03ba2647c5c020bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6d0b6c0d6801c3c10dc1f31b981ed6fc038ee2432f590cf08023bd27772e244
MD5 532be73d47947e59a63da7e5b00aa156
BLAKE2b-256 7f2a5ad624239c0c9d39551d547914da42764f306559ca1d0cf1eefbae89629b

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22236fce4472209ef39902d5dff342022bf75a46f6abfe82aeb4b89d1161e7cd
MD5 44d1c3aab8c8df3cea7f1286920dede8
BLAKE2b-256 272fd92edf73012e4d4b89aa809e8e1a329de96773f01b5c5c6c711bb3d3c61f

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dbd839f3b1f8cdebcbe11f31a2905c538889915ab5ba2f6c391a9570b84918a8
MD5 f18c8c8984027730f6d5dcf768eb0b69
BLAKE2b-256 4bd2545fcb56b57b3a1fe2be28b38b554d22fc5829cf6b1afebc2e80049bc820

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: agentvec-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 680.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agentvec-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6adbd5e393de7470f17c41a47f893661bc443732ef76c7ae2380c36b597ae1b4
MD5 9aecca55c9741f8fc1450f35e7662800
BLAKE2b-256 90b4f80e6df25b24f58c9027fcfd6af107b5eebb0d84d46edb20bf4bb9b99f02

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57a6e41d56324c726ea006d04475e9432a79593eb41a428e99caafd0e2d82bfd
MD5 e966af277f692ebb5126a700169925f4
BLAKE2b-256 a41c607a65ef02a70df7c02cdbc69aa05ab42cce6ce8a0d36c1cdac4af53fd19

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70017d1d9c1457d7856df82923501da15d5227b258c5c68c4a35b44eb5e299cd
MD5 feac1bb977681eabb311bf934ee3b438
BLAKE2b-256 8ee2caff79aa55544a8da97ae049b02b7497e67d71a21ca3de53dc7dfa0c726e

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: agentvec-0.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 681.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agentvec-0.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c0fb035f5b2181f9a2a7e686d20eceed0adec74d8b66bb77f047f9158e23c72b
MD5 0794d76633e03db0304034889ab4034e
BLAKE2b-256 0db0812911685b55688b0b26427f74cd221b3fe3f7637a150af3d546f11b35d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp39-cp39-win_amd64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e04c2e6da04c8f044e9fa26886f2ee2f0077a837a7fc5d6b0721c6350372fe05
MD5 4b3924213eb45ce8099809d4218cef7b
BLAKE2b-256 92459dfac0d9ec19701c0f41b34022ba6009bbfabdddcaa9a2c954080c47eba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a3538a6bf49ea420609fce8409c1894c02f1072ac5fa8831dea43574220dc97
MD5 cd049811896c931d6d02d25d6e7ce3e6
BLAKE2b-256 120a96cc94c7d8fe1d40d75f9826048691d344bc59772e2969475036155ff54c

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: agentvec-0.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 681.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agentvec-0.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dc3eda0d86f6b704b1a33455a561fa0eb13cd26cf90f5ae0c816e8c487a2a031
MD5 cf99b2771eea85460bbd4e7225bf7c1b
BLAKE2b-256 fff49ae8fe72b3606e4bb411a25dd266cb45c7682b542e3bc43228184299f9d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp38-cp38-win_amd64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a2d229022a3d38d628117008b166c2c8d5d46725f2b17bb04bca8544a51d206
MD5 c48c1964c38fda5d46708d60c0f473c0
BLAKE2b-256 f6514732f583c42a23bb81ef1a713a9997aa681df63208e08b8dfe18a3580c85

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Akuming/agentvec

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

File details

Details for the file agentvec-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for agentvec-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c15c8cb0e3178082316ea1abc53282b72af6afa8bfbd1e51ec26e2abda0bbc6
MD5 9e2ab280d6391ef420d779d98c610c94
BLAKE2b-256 7245a1fe69084270a66c7de51b249af4d924c281cfbd3d202d7f4fad32f105f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvec-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Akuming/agentvec

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