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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: memoryintelligence
3
- Version: 0.1.0
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 ULID for request tracking."""
77
- return str(ULID())
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
  """
@@ -1,3 +1,3 @@
1
1
  """Memory Intelligence SDK version."""
2
2
 
3
- __version__ = "0.1.0"
3
+ __version__ = "0.1.1"
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "memoryintelligence"
7
- version = "0.1.0"
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]