A flexible memory system for Gen AI applications
Project description
GLLM Memory
Description
Memory layer for AI agents. The public API is MemoryManager. You can use it in two ways:
- HTTP mode: use
api_keyand optionalhost - SDK mode: use
MemoryManagerConfigand passconfig=...
In SDK mode, you can register your own LLM, embedding model, memory store, and optional reranker without exposing backend-specific config to application code.
Prerequisites
Mandatory
- Python 3.11+ — Install here
- pip — Install here
- uv — Install here
- gcloud CLI (for authentication) — Install here, then log in using:
gcloud auth login
Mem0 Configuration
- Mem0 API key (HTTP client): from Mem0 dashboard.
- Self-hosted URL: set
MEM0_HOSTif the API is not Mem0 cloud.
Environment variables (typical):
| Variable | Role |
|---|---|
MEM0_API_KEY |
Required for the HTTP client when not passed in code. |
MEM0_HOST |
Optional; base URL for self-hosted Mem0 API. |
MEMORY_PROVIDER |
Optional; default is Mem0 (mem0). |
TIMEOUT_SEC |
Optional; request timeout in seconds (default 30). Used when building clients from env. |
Two ways to connect
- HTTP API — pass
api_keyand optionallyhosttoMemoryManager. Same as settingMEM0_API_KEY/MEM0_HOSTand using defaults. - SDK mode — pass
config=MemoryManagerConfig(...)toMemoryManager. This path uses the local SDK integration and lets you register LLM, embedding, memory store, and reranker through the builder API. Seeexamples/example_mem0_sdk_client.py.
Do not commit secrets to git.
📦 Installation
Install from Artifact Registry
This requires authentication via the gcloud CLI.
uv pip install \
--extra-index-url "https://oauth2accesstoken:$(gcloud auth print-access-token)@glsdk.gdplabs.id/gen-ai-internal/simple/" \
gllm-memory
🔧 Local Development Setup
Prerequisites
- Python 3.11+ — Install here
- pip — Install here
- uv — Install here
- gcloud CLI — Install here, then log in using:
gcloud auth login
- Git — Install here
- Access to the GDP Labs SDK GitHub repository
1. Clone Repository
git clone git@github.com:GDP-ADMIN/gl-sdk.git
cd gl-sdk/libs/gllm-memory
2. Setup Authentication
Set the following environment variables to authenticate with internal package indexes:
export UV_INDEX_GEN_AI_INTERNAL_USERNAME=oauth2accesstoken
export UV_INDEX_GEN_AI_INTERNAL_PASSWORD="$(gcloud auth print-access-token)"
export UV_INDEX_GEN_AI_USERNAME=oauth2accesstoken
export UV_INDEX_GEN_AI_PASSWORD="$(gcloud auth print-access-token)"
3. Quick Setup
Run:
make setup
4. Activate Virtual Environment
source .venv/bin/activate
🚀 Quick Start
For Using the Library
-
Install the package:
uv pip install gllm-memory
-
Set your Mem0 API key:
export MEM0_API_KEY="your_api_key_here"
-
For Self-Hosted Mem0 (Optional):
export MEM0_API_KEY="your_api_key_here" export MEM0_HOST="https://your-mem0-server.com"
For Development
-
Complete setup (this will install all dependencies, setup pre-commit, and activate the environment):
make setup source .venv/bin/activate
-
Set your Mem0 API key:
export MEM0_API_KEY="your_api_key_here"
-
Run an example:
# HTTP API (add, search, list, delete_by_user_query, delete) python examples/simple_usage.py # SDK mode with MemoryManagerConfig python examples/example_mem0_sdk_client.py
Architecture
The system follows a layered architecture below:
┌──────────────────────────────────────────────────────────────┐
│ Application Layer │
├──────────────────────────────────────────────────────────────┤
│ Memory Manager │
├──────────────────────────────────────────────────────────────┤
│ Memory Client (Base) │
├──────────────────────────────────────────────────────────────┤
│ Provider Layer (Mem0) │
├──────────────────────────────────────────────────────────────┤
│ Mem0 Platform (HTTP client or Python SDK) │
└──────────────────────────────────────────────────────────────┘
🌐 HTTP Mode
Use this mode if you want to connect to the HTTP API directly. Point the client at your own server:
from gllm_memory import MemoryManager
manager = MemoryManager(
api_key="your-api-key",
host="https://your-mem0-server.com",
)
If you want local SDK mode, use MemoryManager(config=...) instead of api_key and host.
🧩 SDK Mode With MemoryManagerConfig
Use this mode if you want to:
- register your own
LMComponentfor memory LLM execution - register your own EM Invoker
- choose the memory store from config
- configure an optional reranker
- keep application code independent from backend-specific config shape
For the memory LLM, there are two registration paths:
- Preferred:
llm.register_component(lm_component, model=...)Use this when your application already owns theLMComponent, prompt setup, and optionalfallback_lms. - Compatibility:
llm.register(lm_invoker, model=...)Use this when you want to pass a direct LM Invoker without a caller-built component.
gllm-memory does not create provider-specific runtime objects for you in normal SDK usage. Your application creates the LMComponent or LM Invoker, then registers it in MemoryManagerConfig.
SDK Mode Example
Recommended LLM registration:
config = (
MemoryManagerConfig.builder()
.memory_store.elasticsearch(
host="localhost",
port=9200,
collection_name="memories",
embedding_model_dims=1536,
)
.embedding.register(
em_invoker,
model="text-embedding-3-small",
embedding_dims=1536,
)
.llm.register_component(lm_component, model="gpt-5-nano")
.build()
)
In this path, lm_component is created by your application. It may use one primary LM Invoker and optional fallback LMs internally.
Compatibility example with a direct LM Invoker:
from gllm_memory import MemoryManager, MemoryManagerConfig
from gllm_inference.lm_invoker.openai_lm_invoker import OpenAILMInvoker
lm_invoker = OpenAILMInvoker(
model_name="gpt-5-nano",
api_key="your_openai_api_key",
)
def build_em_invoker():
from gllm_inference.em_invoker.openai_em_invoker import OpenAIEMInvoker
return OpenAIEMInvoker(
model_name="text-embedding-3-small",
api_key="your_openai_api_key",
)
em_invoker = build_em_invoker()
config = (
MemoryManagerConfig.builder()
.memory_store.elasticsearch(
host="localhost",
port=9200,
collection_name="memories",
embedding_model_dims=1536,
)
.embedding.register(
em_invoker,
model="text-embedding-3-small",
embedding_dims=1536,
)
.llm.register(lm_invoker, model="gpt-5-nano")
.reranker.llm_reranker(
model="gpt-5-nano",
api_key="your_openai_api_key",
top_k=5,
)
.build()
)
memory_manager = MemoryManager(config=config)
gllm-memory does not require a provider-specific helper import for this step. You only need to pass either:
- an
LMComponentinstance for the preferred path, or - an LM Invoker instance for the compatibility path
The reranker is optional; when configured with llm_reranker, the builder emits the Mem0-compatible reranker section for SDK search calls that use rerank=True. If your installed gllm_inference version still has a circular import on OpenAIEMInvoker, instantiate the EM invoker with a local lazy import like the example above.
SDK Mode With Default Config
If you want to use the default SDK setup, you can build an empty config:
from gllm_memory import MemoryManager, MemoryManagerConfig
config = MemoryManagerConfig.builder().build()
memory_manager = MemoryManager(config=config)
Default SDK behavior:
- memory store uses Elasticsearch
- embedding uses
gllm-inference: EM Invokerwith OpenAI defaults - llm uses
gllm-inference: LM Invokerwith OpenAI defaults - reranker is omitted unless configured explicitly
Required environment variables for the default SDK config:
ELASTICSEARCH_HOSTELASTICSEARCH_PORTELASTICSEARCH_COLLECTION_NAMEELASTICSEARCH_EMBEDDING_MODEL_DIMSOPENAI_API_KEY
Optional environment variables:
ELASTICSEARCH_USERELASTICSEARCH_PASSWORDOPENAI_BASE_URLOPENAI_MODEL_NAME(default SDK LLM model override)OPENAI_EMBEDDING_MODEL(used byexamples/example_mem0_sdk_client.py)
SDK Mode With Another Memory Store
You can register another memory store with the same builder style:
config = (
MemoryManagerConfig.builder()
.memory_store.register(
"pgvector",
{
"host": "localhost",
"port": 5432,
"dbname": "postgres",
"user": "postgres",
"password": "postgres",
"collection_name": "memories",
},
)
.embedding.register(em_invoker, embedding_dims=1536)
.llm.register(lm_invoker)
.build()
)
Notes:
memory_storeis the public config name- you do not need to know the backend-native config structure for the built-in builder helpers
- non-Elasticsearch stores use the backend's native behavior unless
gllm-memoryadds custom handling for them
🕸️ Knowledge Graph in GLLM Memory
gllm-memory can optionally use a Knowledge Graph (KG). This is useful when you want two kinds of memory at the same time:
- normal memory search
- graph-based facts such as people, places, companies, and relationships
Simple example:
- text memory:
"Larry Page co-founded Google."
- graph memory:
Larry Page -[CO_FOUNDED]-> Google
How it works
When use_knowledge_graph=True:
add(...)stores the memory ingllm-memory- the same messages are also sent to a text-to-graph extractor
- extracted nodes and relationships are saved to the graph store
update(...)keepsmem0as the source of truth, then refreshes the related KG contributiondelete(...)anddelete_by_user_query(...)remove matched memory rows, then clean up the related KG contributionsearch(...)returns a hybrid result:- normal memory chunks
- graph-based chunks from KG traversal
This means you can keep the normal memory experience, while also getting graph-style knowledge.
KG storage isolation
Current KG storage uses an isolation boundary so graph data from gllm-memory is easier to
separate from other applications that may share the same Neo4j instance.
In practice:
- KG nodes keep their semantic labels such as
Person,Company, orTopic - every KG node and relationship is stored with
graph_namespace="memory" - graph node storage IDs use a
memory:prefix for internal persistence, while human-readable entity values are preserved inname, for example:memory:9f12ab34:person:johnmemory:9f12ab34:company:google
Simple flow
Add flow
┌──────────────────┐
│ application │
│ calls add(...) │
└──────────────────┘
↓
┌──────────────────────────────────────┐
│ gllm-memory │
│ starts 2 add paths │
└──────────────────────────────────────┘
↓ ↓
┌──────────────────┐ ┌──────────────────┐
│ memory provider │ │ text-to-graph │
│ stores memory │ │ extraction │
└──────────────────┘ └──────────────────┘
↓
┌──────────────────┐
│ graph store │
│ saves nodes and │
│ relationships │
└──────────────────┘
Retrieve flow
┌──────────────────────┐
│ application │
│ calls search(...) │
└──────────────────────┘
↓
┌──────────────────────────────────────────────────────────┐
│ gllm-memory │
│ starts 2 retrieve paths │
└──────────────────────────────────────────────────────────┘
↓
┌──────────────────────┐ ┌──────────────────────┐
│ memory provider │ │ text-to-graph │
│ searches memory │ │ finds graph seeds │
└──────────────────────┘ └──────────────────────┘
│ ↓
│ ┌──────────────────────┐
│ │ graph store │
│ │ returns related │
│ │ facts │
│ └──────────────────────┘
│ │
└───────────────┐ ┌─────────────┘
↓ ↓
┌──────────────────────────────────────────────────────────┐
│ gllm-memory │
│ merges memory result and KG result into final chunks │
└──────────────────────────────────────────────────────────┘
Update flow
┌──────────────────────┐
│ application │
│ calls update(...) │
└──────────────────────┘
↓
┌──────────────────────────────────────────────────────────┐
│ gllm-memory │
│ updates mem0 first │
└──────────────────────────────────────────────────────────┘
↓
┌──────────────────────┐
│ memory provider │
│ updates 1 memory row │
└──────────────────────┘
↓
┌──────────────────────────────────────────────────────────┐
│ gllm-memory │
│ rebuilds KG contribution from the updated memory row │
└──────────────────────────────────────────────────────────┘
↓
┌──────────────────────┐ ┌──────────────────────┐
│ text-to-graph │ │ graph store │
│ extracts new facts │ -> │ replaces old facts │
└──────────────────────┘ └──────────────────────┘
Delete flow
┌──────────────────────────────┐
│ application │
│ calls delete(...) │
│ or delete_by_user_query(...) │
└──────────────────────────────┘
↓
┌──────────────────────────────────────────────────────────┐
│ gllm-memory │
│ resolves the target memory rows │
└──────────────────────────────────────────────────────────┘
↓
┌──────────────────────┐
│ memory provider │
│ deletes matched rows │
└──────────────────────┘
↓
┌──────────────────────────────────────────────────────────┐
│ gllm-memory │
│ cleans up KG contribution for deleted memory rows │
└──────────────────────────────────────────────────────────┘
↓
┌──────────────────────┐
│ graph store │
│ removes orphan facts │
│ when no owner remains│
└──────────────────────┘
KG update behavior
When use_knowledge_graph=True, update(...) works like this:
mem0is updated first- the updated memory row becomes the new source for KG extraction
- KG performs a logical replace of the old contribution for that memory row
- new nodes and relationships are written with graph upsert operations
- shared graph facts stay safe because KG tracks ownership across memory rows
Notes:
- KG update is contribution-based, not a direct patch on raw nodes or edges
- one memory row maps to one KG contribution
- repeated example runs can still create multiple
mem0rows if the example keeps callingadd(...)
KG delete behavior
When use_knowledge_graph=True, delete works like this:
- target memory rows are resolved first
mem0deletes the matched memory rows- KG removes the contribution owned by each deleted memory row
- shared graph facts stay safe because KG tracks ownership across memory rows
- orphan nodes and relationships are removed when no owner remains
Notes:
delete(...)is useful when you already know the target memory IDsdelete_by_user_query(...)resolves targets from memory search, then deletes those memory rows and their KG contribution- KG delete is contribution-based, not a raw
DETACH DELETEof every matched graph node
How to enable it
The public API is still the same:
memory_manager = MemoryManager(
config=config,
use_knowledge_graph=True,
)
You can configure KG in two ways:
- recommended: use
MemoryManagerConfig - fallback: use environment variables
Recommended setup
The recommended setup is to create a separate LM invoker for KG and register it explicitly.
This gives you a clean setup because:
- the memory LLM and KG LLM can be different
- the config stays clear and easy to manage
- you can change each part independently later
Example:
from gllm_inference.lm_invoker.openai_lm_invoker import OpenAILMInvoker
from gllm_memory import MemoryManager, MemoryManagerConfig
memory_lm_invoker = OpenAILMInvoker(
model_name="gpt-5-nano",
api_key="your_openai_api_key",
)
kg_lm_invoker = OpenAILMInvoker(
model_name="gpt-4o-mini",
api_key="your_openai_api_key",
)
config = (
MemoryManagerConfig.builder()
.memory_store.elasticsearch(
host="localhost",
port=9200,
collection_name="memories",
embedding_model_dims=1536,
)
.embedding.openai(model="text-embedding-3-small", api_key="your_openai_api_key")
.llm.register(memory_lm_invoker, model="gpt-5-nano")
.knowledge_graph.text_to_graph.register(
kg_lm_invoker,
strict_mode=True,
use_structured_output=False,
)
.knowledge_graph.graph_data_store.neo4j(
uri="bolt://localhost:7687",
user="neo4j",
password="password",
)
.build()
)
memory_manager = MemoryManager(config=config, use_knowledge_graph=True)
For a complete add -> search -> update -> delete example, see:
examples/example_memory_manager_with_knowledge_graph.py
Environment-based setup
If you do not pass MemoryManagerConfig, KG can also read its settings from environment variables.
Common required env vars:
KNOWLEDGE_GRAPH_LLM_MODEL_IDOPENAI_API_KEYNEO4J_URINEO4J_USERNEO4J_PASSWORD
When to use it
Use KG when you want the memory system to understand connections between things.
Examples:
- who founded a company
- where a company is located
- what relationship exists between two entities
In short:
- if you only need normal memory, use
MemoryManageras usual - if you also want graph-based knowledge, enable
use_knowledge_graph=True
Core API methods
MemoryManager exposes async methods; query is required where noted.
Methods
add(user_id, agent_id, messages, scopes, metadata, infer, is_important)- Add new memories from message objectssearch(query, user_id, agent_id, scopes, metadata, threshold, top_k, include_important, rerank)- Search and retrieve memories by query (query is required)list_memories(user_id, agent_id, scopes, metadata, keywords, page, page_size)- Get all memories with pagination and keywords filteringupdate(memory_id, new_content, metadata, user_id, agent_id, scopes, is_important)- Update an existing memory by IDdelete(memory_ids, user_id, agent_id, scopes, metadata)- Delete memories by IDs or by user/agent identifiers. When KG is enabled, the related KG contribution is also cleaned up for deleted rows.delete_by_user_query(query, user_id, agent_id, scopes, metadata, threshold, top_k)- Delete memories by query ( query is required). When KG is enabled, the related KG contribution is also cleaned up for deleted rows.
Example (HTTP API)
from gllm_memory import MemoryManager
from gllm_inference.schema.message import Message
from gllm_memory.enums import MemoryScope
memory_manager = MemoryManager(api_key="...", host="...") # host optional
messages = [
Message.user("I love pizza"),
Message.assistant("Noted."),
]
await memory_manager.add(
user_id="user_123",
agent_id="agent_456",
messages=messages,
scopes={MemoryScope.USER},
metadata={"conversation_id": "chat_001"}, # Optional
infer=True, # Optional, defaults to True
is_important=False, # Optional, defaults to False
)
memories = await memory_manager.search(
query="What does the user like?",
user_id="user_123",
scopes={MemoryScope.USER},
metadata=None, # Optional
threshold=0.3, # Optional, defaults to 0.3
top_k=10, # Optional, defaults to 10
include_important=False, # Optional, defaults to False
rerank=False, # Optional, defaults to False; if True, applies re-ranking to results
)
await memory_manager.list_memories(
user_id="user_123",
scopes={MemoryScope.USER},
metadata=None, # Optional
keywords="food", # Optional
page=1, # Optional, defaults to 1
page_size=100 # Optional, defaults to 100
)
await memory_manager.update(
memory_id="memory_uuid_123",
new_content="Updated text",
user_id="user_123",
agent_id="agent_456",
scopes={MemoryScope.USER, MemoryScope.ASSISTANT}, # Optional
is_important=None, # Optional; None leaves existing flag unchanged
)
await memory_manager.delete_by_user_query(
query="food preferences",
user_id="user_123",
scopes={MemoryScope.USER, MemoryScope.ASSISTANT},
metadata=None, # Optional
threshold=0.3, # Optional, defaults to 0.3
top_k=10 # Optional, defaults to 10
)
# Delete memories by identifiers
delete_result = await memory_manager.delete(
memory_ids=None, # Optional
user_id="user_123",
scopes={MemoryScope.USER, MemoryScope.ASSISTANT},
metadata=None # Optional
)
# Then use await manager.add(...), search(...), etc.
Example (SDK Mode)
from gllm_memory import MemoryManager, MemoryManagerConfig
from gllm_memory.enums import MemoryScope
from gllm_inference.lm_invoker.openai_lm_invoker import OpenAILMInvoker
from gllm_inference.schema.message import Message
lm_invoker = OpenAILMInvoker(model_name="gpt-5-nano", api_key="...")
def build_em_invoker():
from gllm_inference.em_invoker.openai_em_invoker import OpenAIEMInvoker
return OpenAIEMInvoker(model_name="text-embedding-3-small", api_key="...")
em_invoker = build_em_invoker()
config = (
MemoryManagerConfig.builder()
.memory_store.elasticsearch(
host="localhost",
port=9200,
collection_name="memories",
embedding_model_dims=1536,
)
.embedding.register(em_invoker, embedding_dims=1536)
.llm.register(lm_invoker)
.reranker.llm_reranker(model="gpt-5-nano", api_key="...", top_k=5)
.build()
)
memory_manager = MemoryManager(config=config)
messages = [
Message.user("I love pizza"),
Message.assistant("Noted."),
]
await memory_manager.add(
user_id="user_123",
agent_id="agent_456",
messages=messages,
scopes={MemoryScope.USER},
)
🔧 Code Quality
# Format code with ruff
ruff format gllm_memory/ tests/
# Check code quality
ruff check gllm_memory/ tests/
# Fix auto-fixable issues
ruff check gllm_memory/ tests/ --fix
Local Development Utilities
The following Makefile commands are available for quick operations:
Install uv
make install-uv
Install Pre-Commit
make install-pre-commit
Install Dependencies
make install
Update Dependencies
make update
Run Tests
make test
Contributing
Please refer to the Python Style Guide for information about code style, documentation standards, and SCA requirements.
Contributing Steps
-
Fork and clone the repository
-
Set up development environment:
# Complete setup: installs uv, configures auth, installs packages, sets up pre-commit make setup
-
Activate virtual environment:
source .venv/bin/activate
-
Run tests to ensure everything works:
make test
-
Make your changes and ensure tests pass:
# Make your changes # Ensure tests pass make test
-
Submit a pull request:
# Submit a pull request git push origin your-branch
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gllm_memory_binary-0.2.1.post2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: gllm_memory_binary-0.2.1.post2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07919e80353a47279d44436bed975d002f3b7d1486de3cee07608a1c7082bd4d
|
|
| MD5 |
6b36f6c9d53e24ddd6fc2ac8c3b4b466
|
|
| BLAKE2b-256 |
4e620dd356336c104dc2d1ebd7ca548f6d266d0ad33c5185c0cda06be8fb205a
|
Provenance
The following attestation bundles were made for gllm_memory_binary-0.2.1.post2-cp312-cp312-win_amd64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/gl-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gllm_memory_binary-0.2.1.post2-cp312-cp312-win_amd64.whl -
Subject digest:
07919e80353a47279d44436bed975d002f3b7d1486de3cee07608a1c7082bd4d - Sigstore transparency entry: 1855984851
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/gl-sdk@34339814d7b9597ea123923719fe794da4421654 -
Branch / Tag:
refs/tags/gllm_memory-v0.2.1.post2 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@34339814d7b9597ea123923719fe794da4421654 -
Trigger Event:
push
-
Statement type:
File details
Details for the file gllm_memory_binary-0.2.1.post2-cp312-cp312-manylinux_2_31_x86_64.whl.
File metadata
- Download URL: gllm_memory_binary-0.2.1.post2-cp312-cp312-manylinux_2_31_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.31+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.24
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddc9ab7a50b941cac3af51e0335f50a2152f7ea32fd69269e6064db9823b3e6e
|
|
| MD5 |
4f6dc268d7e18b1e33926edfd575d903
|
|
| BLAKE2b-256 |
d4c6db8d6aacde4ec6102f10d572d9f74936817da418316540820a0e4f98f201
|
File details
Details for the file gllm_memory_binary-0.2.1.post2-cp312-cp312-macosx_13_0_arm64.whl.
File metadata
- Download URL: gllm_memory_binary-0.2.1.post2-cp312-cp312-macosx_13_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
355ffa37e08a19291d6236f158ff595112ddafeae1fdba0399613a82b6eaa4ea
|
|
| MD5 |
e64a32f539f98387fcbede50650f563f
|
|
| BLAKE2b-256 |
2c14347f3d8e87bb2b3607312db7bd4ec5274bb38962bac93961de7af92688d6
|
Provenance
The following attestation bundles were made for gllm_memory_binary-0.2.1.post2-cp312-cp312-macosx_13_0_arm64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/gl-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gllm_memory_binary-0.2.1.post2-cp312-cp312-macosx_13_0_arm64.whl -
Subject digest:
355ffa37e08a19291d6236f158ff595112ddafeae1fdba0399613a82b6eaa4ea - Sigstore transparency entry: 1855985351
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/gl-sdk@34339814d7b9597ea123923719fe794da4421654 -
Branch / Tag:
refs/tags/gllm_memory-v0.2.1.post2 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@34339814d7b9597ea123923719fe794da4421654 -
Trigger Event:
push
-
Statement type:
File details
Details for the file gllm_memory_binary-0.2.1.post2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: gllm_memory_binary-0.2.1.post2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
714534c96891f7512f438977a3ccd352d50ec5afa9d8abaf2452632d69c1b381
|
|
| MD5 |
61d623b4c7a275666543455ea2e10a19
|
|
| BLAKE2b-256 |
05f8d3019f0038b40e518639ed6807dff532800071861adaa5d32d6421b451a0
|
Provenance
The following attestation bundles were made for gllm_memory_binary-0.2.1.post2-cp311-cp311-win_amd64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/gl-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gllm_memory_binary-0.2.1.post2-cp311-cp311-win_amd64.whl -
Subject digest:
714534c96891f7512f438977a3ccd352d50ec5afa9d8abaf2452632d69c1b381 - Sigstore transparency entry: 1855985216
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/gl-sdk@34339814d7b9597ea123923719fe794da4421654 -
Branch / Tag:
refs/tags/gllm_memory-v0.2.1.post2 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@34339814d7b9597ea123923719fe794da4421654 -
Trigger Event:
push
-
Statement type:
File details
Details for the file gllm_memory_binary-0.2.1.post2-cp311-cp311-manylinux_2_31_x86_64.whl.
File metadata
- Download URL: gllm_memory_binary-0.2.1.post2-cp311-cp311-manylinux_2_31_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.31+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.24
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc3128523c32c64d8b83971da3900157b387297d15bd9453328bfecbda2386c5
|
|
| MD5 |
3027160a343ee2111a8b96b833bd2942
|
|
| BLAKE2b-256 |
f40b5442617d2ef51aa39cd87c3479c12c346d01dff07187c0bb9870d64b64ff
|
File details
Details for the file gllm_memory_binary-0.2.1.post2-cp311-cp311-macosx_13_0_arm64.whl.
File metadata
- Download URL: gllm_memory_binary-0.2.1.post2-cp311-cp311-macosx_13_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
581d09441c107530f5914aa53b201d61e385ef4cc883ade19d703997726a0655
|
|
| MD5 |
34dd538373d5886410fd7b6322948d52
|
|
| BLAKE2b-256 |
e6aed4d2b4697aed6e6bf040be17ea46714c183e77438ead621adec2f9f659a7
|
Provenance
The following attestation bundles were made for gllm_memory_binary-0.2.1.post2-cp311-cp311-macosx_13_0_arm64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/gl-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gllm_memory_binary-0.2.1.post2-cp311-cp311-macosx_13_0_arm64.whl -
Subject digest:
581d09441c107530f5914aa53b201d61e385ef4cc883ade19d703997726a0655 - Sigstore transparency entry: 1855984608
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/gl-sdk@34339814d7b9597ea123923719fe794da4421654 -
Branch / Tag:
refs/tags/gllm_memory-v0.2.1.post2 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@34339814d7b9597ea123923719fe794da4421654 -
Trigger Event:
push
-
Statement type: