recallrai 0.3.0__tar.gz → 0.3.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.
Potentially problematic release.
This version of recallrai might be problematic. Click here for more details.
- {recallrai-0.3.0 → recallrai-0.3.1}/PKG-INFO +1 -1
- {recallrai-0.3.0 → recallrai-0.3.1}/pyproject.toml +1 -1
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/__init__.py +1 -1
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/utils/http_client.py +3 -3
- {recallrai-0.3.0 → recallrai-0.3.1}/README.md +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/client.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/__init__.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/auth.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/base.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/merge_conflicts.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/network.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/server.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/sessions.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/users.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/validation.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/merge_conflict.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/models/__init__.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/models/merge_conflict.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/models/session.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/models/user.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/session.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/user.py +0 -0
- {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/utils/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: recallrai
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Official Python SDK for RecallrAI - Revolutionary contextual memory system that enables AI assistants to form meaningful connections between conversations, just like human memory.
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: ai,memory,context,llm,mem0,getzep,zep
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "recallrai"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.1"
|
|
4
4
|
description = "Official Python SDK for RecallrAI - Revolutionary contextual memory system that enables AI assistants to form meaningful connections between conversations, just like human memory."
|
|
5
5
|
authors = ["Devasheesh Mishra <devasheeshmishra4@gmail.com>"]
|
|
6
6
|
license = "MIT License"
|
|
@@ -40,11 +40,11 @@ class HTTPClient:
|
|
|
40
40
|
self.client = Client(
|
|
41
41
|
timeout=self.timeout,
|
|
42
42
|
headers={
|
|
43
|
-
"X-Api-Key": self.api_key,
|
|
44
|
-
"X-Project-Id": self.project_id,
|
|
43
|
+
"X-Recallr-Api-Key": self.api_key,
|
|
44
|
+
"X-Recallr-Project-Id": self.project_id,
|
|
45
45
|
"Content-Type": "application/json",
|
|
46
46
|
"Accept": "application/json",
|
|
47
|
-
"User-Agent": f"RecallrAI-Python-SDK/
|
|
47
|
+
"User-Agent": f"RecallrAI-Python-SDK/0.3.1",
|
|
48
48
|
},
|
|
49
49
|
)
|
|
50
50
|
|
|
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
|
|
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
|
|
File without changes
|