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.

Files changed (23) hide show
  1. {recallrai-0.3.0 → recallrai-0.3.1}/PKG-INFO +1 -1
  2. {recallrai-0.3.0 → recallrai-0.3.1}/pyproject.toml +1 -1
  3. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/__init__.py +1 -1
  4. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/utils/http_client.py +3 -3
  5. {recallrai-0.3.0 → recallrai-0.3.1}/README.md +0 -0
  6. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/client.py +0 -0
  7. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/__init__.py +0 -0
  8. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/auth.py +0 -0
  9. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/base.py +0 -0
  10. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/merge_conflicts.py +0 -0
  11. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/network.py +0 -0
  12. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/server.py +0 -0
  13. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/sessions.py +0 -0
  14. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/users.py +0 -0
  15. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/exceptions/validation.py +0 -0
  16. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/merge_conflict.py +0 -0
  17. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/models/__init__.py +0 -0
  18. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/models/merge_conflict.py +0 -0
  19. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/models/session.py +0 -0
  20. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/models/user.py +0 -0
  21. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/session.py +0 -0
  22. {recallrai-0.3.0 → recallrai-0.3.1}/recallrai/user.py +0 -0
  23. {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.0
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.0"
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"
@@ -8,7 +8,7 @@ from .client import RecallrAI
8
8
  from .user import User
9
9
  from .session import Session
10
10
 
11
- __version__ = "0.3.0"
11
+ __version__ = "0.3.1"
12
12
 
13
13
  __all__ = [
14
14
  "RecallrAI",
@@ -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/RecallrAI-Python-SDK/RecallrAI-Python-SDK/0.3.0",
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