agenticmem 0.1.2__tar.gz → 0.1.2.2__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 agenticmem might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: agenticmem
3
- Version: 0.1.2
3
+ Version: 0.1.2.2
4
4
  Summary: A Python client for the AgenticMem API
5
5
  License: MIT
6
6
  Author: AgenticMem Team
@@ -11,7 +11,8 @@ Classifier: Programming Language :: Python :: 3.10
11
11
  Classifier: Programming Language :: Python :: 3.11
12
12
  Classifier: Programming Language :: Python :: 3.12
13
13
  Classifier: Programming Language :: Python :: 3.13
14
- Requires-Dist: agenticmem-commons (==0.1.2)
14
+ Requires-Dist: agenticmem-commons (==0.1.3.3)
15
+ Requires-Dist: aiohttp (>=3.12.9,<4.0.0)
15
16
  Requires-Dist: griffe (==0.48.0)
16
17
  Requires-Dist: mkdocstrings[python] (>=0.18.0)
17
18
  Requires-Dist: pydantic (>=2.0.0,<3.0.0)
@@ -1,6 +1,6 @@
1
+ from agenticmem_commons import IS_TEST_ENV
1
2
  import aiohttp
2
3
  from urllib.parse import urljoin
3
- import os
4
4
  import requests
5
5
  from typing import Optional, Union
6
6
  from agenticmem_commons.api_schema.retriever_schema import (
@@ -14,7 +14,7 @@ from agenticmem_commons.api_schema.retriever_schema import (
14
14
  GetUserProfilesResponse,
15
15
  )
16
16
 
17
- if os.environ.get("TEST_ENV", True):
17
+ if IS_TEST_ENV:
18
18
  BACKEND_URL = "http://127.0.0.1:8000" # Local server for testing
19
19
  else:
20
20
  BACKEND_URL = "http://agenticmem-test.us-west-2.elasticbeanstalk.com:8081" # Elastic Beanstalk server url
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "agenticmem"
3
- version = "0.1.2"
3
+ version = "0.1.2.2"
4
4
  description = "A Python client for the AgenticMem API"
5
5
  authors = ["AgenticMem Team"]
6
6
  readme = "README.md"
@@ -12,9 +12,10 @@ python = "^3.10"
12
12
  requests = "^2.25.0"
13
13
  pydantic = "^2.0.0"
14
14
  python-dateutil = "^2.8.0"
15
- agenticmem-commons = "0.1.2"
15
+ agenticmem-commons = "0.1.3.3"
16
16
  mkdocstrings = {version = ">=0.18.0", extras = ["python"]}
17
17
  griffe = "0.48.0"
18
+ aiohttp = "^3.12.9"
18
19
 
19
20
  [build-system]
20
21
  requires = ["poetry-core>=1.0.0"]
File without changes