sovant 1.3.2__tar.gz → 1.3.3__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: sovant
3
- Version: 1.3.2
3
+ Version: 1.3.3
4
4
  Summary: Sovant Python SDK — governed AI memory layer for AI agents and applications
5
5
  Author: Sovant
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "sovant"
3
- version = "1.3.2"
3
+ version = "1.3.3"
4
4
  description = "Sovant Python SDK — governed AI memory layer for AI agents and applications"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -1,4 +1,4 @@
1
1
  from .client import Sovant, SovantError
2
2
  from .models import MemoryCreate, MemoryResult, SearchQuery
3
3
 
4
- __version__ = "1.3.2"
4
+ __version__ = "1.3.3"
@@ -5,6 +5,9 @@ import httpx
5
5
  from typing import Any, Dict, Optional, Callable
6
6
  from .models import MemoryCreate, SearchQuery
7
7
 
8
+ # SDK version — used for X-Sovant-Client header
9
+ SDK_VERSION = "1.3.3"
10
+
8
11
  class SovantError(Exception):
9
12
  def __init__(self, message: str, code: str, status: int | None = None, details: Any | None = None):
10
13
  super().__init__(message)
@@ -38,7 +41,8 @@ class Sovant:
38
41
  timeout=self.timeout,
39
42
  headers={
40
43
  "authorization": f"Bearer {self.api_key}",
41
- "content-type": "application/json"
44
+ "content-type": "application/json",
45
+ "x-sovant-client": f"python-sdk/{SDK_VERSION}"
42
46
  }
43
47
  )
44
48
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sovant
3
- Version: 1.3.2
3
+ Version: 1.3.3
4
4
  Summary: Sovant Python SDK — governed AI memory layer for AI agents and applications
5
5
  Author: Sovant
6
6
  License-Expression: MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes