memoryintelligence 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/PKG-INFO +1 -2
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/memoryintelligence/_http.py +3 -3
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/memoryintelligence/_version.py +1 -1
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/pyproject.toml +1 -2
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/CHANGELOG.md +0 -0
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/LICENSE +0 -0
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/MANIFEST.in +0 -0
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/README.md +0 -0
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/memoryintelligence/__init__.py +0 -0
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/memoryintelligence/_auth.py +0 -0
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/memoryintelligence/_errors.py +0 -0
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/memoryintelligence/_simple.py +0 -0
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/memoryintelligence/py.typed +0 -0
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/memoryintelligence.egg-info/SOURCES.txt +0 -0
- {memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: memoryintelligence
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Official Python SDK for Memory Intelligence. Structured, verifiable memory for AI.
|
|
5
5
|
Author-email: Memory Intelligence Team <sdk@memoryintelligence.io>
|
|
6
6
|
License: MIT
|
|
@@ -21,7 +21,6 @@ Requires-Python: >=3.10
|
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
23
|
Requires-Dist: httpx>=0.27.0
|
|
24
|
-
Requires-Dist: python-ulid>=2.0.0
|
|
25
24
|
Provides-Extra: dotenv
|
|
26
25
|
Requires-Dist: python-dotenv>=1.0.0; extra == "dotenv"
|
|
27
26
|
Provides-Extra: dev
|
|
@@ -9,10 +9,10 @@ from __future__ import annotations
|
|
|
9
9
|
import logging
|
|
10
10
|
import random
|
|
11
11
|
import time
|
|
12
|
+
import uuid
|
|
12
13
|
from typing import Any
|
|
13
14
|
|
|
14
15
|
import httpx
|
|
15
|
-
from ulid import ULID
|
|
16
16
|
|
|
17
17
|
from ._errors import (
|
|
18
18
|
ConnectionError,
|
|
@@ -73,8 +73,8 @@ class _BaseTransport:
|
|
|
73
73
|
return headers
|
|
74
74
|
|
|
75
75
|
def _generate_request_id(self) -> str:
|
|
76
|
-
"""Generate a fresh
|
|
77
|
-
return
|
|
76
|
+
"""Generate a fresh id for request tracking."""
|
|
77
|
+
return uuid.uuid4().hex
|
|
78
78
|
|
|
79
79
|
def _calculate_backoff(self, attempt: int, retry_after: int | None = None) -> float:
|
|
80
80
|
"""
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "memoryintelligence"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "Official Python SDK for Memory Intelligence. Structured, verifiable memory for AI."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -24,7 +24,6 @@ classifiers = [
|
|
|
24
24
|
]
|
|
25
25
|
dependencies = [
|
|
26
26
|
"httpx>=0.27.0",
|
|
27
|
-
"python-ulid>=2.0.0",
|
|
28
27
|
]
|
|
29
28
|
|
|
30
29
|
[project.optional-dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{memoryintelligence-0.1.0 → memoryintelligence-0.1.1}/memoryintelligence.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|