getmem-ai 0.0.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.
- getmem_ai-0.0.1/PKG-INFO +41 -0
- getmem_ai-0.0.1/README.md +23 -0
- getmem_ai-0.0.1/getmem_ai/__init__.py +23 -0
- getmem_ai-0.0.1/getmem_ai.egg-info/PKG-INFO +41 -0
- getmem_ai-0.0.1/getmem_ai.egg-info/SOURCES.txt +7 -0
- getmem_ai-0.0.1/getmem_ai.egg-info/dependency_links.txt +1 -0
- getmem_ai-0.0.1/getmem_ai.egg-info/top_level.txt +1 -0
- getmem_ai-0.0.1/pyproject.toml +25 -0
- getmem_ai-0.0.1/setup.cfg +4 -0
getmem_ai-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: getmem-ai
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Persistent memory API for AI agents — getmem.ai
|
|
5
|
+
Author-email: "getmem.ai" <hello@getmem.ai>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://getmem.ai
|
|
8
|
+
Project-URL: Documentation, https://getmem.ai
|
|
9
|
+
Project-URL: Repository, https://github.com/NimbleV2023/getmem
|
|
10
|
+
Keywords: ai,memory,agents,llm,rag,context
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# getmem-ai
|
|
20
|
+
|
|
21
|
+
Persistent memory API for AI agents. Two API calls — your agent remembers everything.
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install getmem-ai
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
```python
|
|
28
|
+
import getmem_ai as getmem
|
|
29
|
+
|
|
30
|
+
mem = getmem.init("gm_your_api_key")
|
|
31
|
+
|
|
32
|
+
# After each turn — automatic extraction
|
|
33
|
+
mem.ingest("user_123", messages=messages)
|
|
34
|
+
|
|
35
|
+
# Before each turn — intelligent context
|
|
36
|
+
context = mem.get("user_123", query=user_message)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
**[Get early access → getmem.ai](https://getmem.ai)**
|
|
40
|
+
|
|
41
|
+
> Full SDK coming soon. Join the waitlist at [getmem.ai](https://getmem.ai).
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# getmem-ai
|
|
2
|
+
|
|
3
|
+
Persistent memory API for AI agents. Two API calls — your agent remembers everything.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
pip install getmem-ai
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```python
|
|
10
|
+
import getmem_ai as getmem
|
|
11
|
+
|
|
12
|
+
mem = getmem.init("gm_your_api_key")
|
|
13
|
+
|
|
14
|
+
# After each turn — automatic extraction
|
|
15
|
+
mem.ingest("user_123", messages=messages)
|
|
16
|
+
|
|
17
|
+
# Before each turn — intelligent context
|
|
18
|
+
context = mem.get("user_123", query=user_message)
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
**[Get early access → getmem.ai](https://getmem.ai)**
|
|
22
|
+
|
|
23
|
+
> Full SDK coming soon. Join the waitlist at [getmem.ai](https://getmem.ai).
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
getmem-ai — Persistent memory API for AI agents.
|
|
3
|
+
|
|
4
|
+
Full SDK coming soon. Join the waitlist at https://getmem.ai
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.0.1"
|
|
8
|
+
__author__ = "getmem.ai"
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def init(api_key: str):
|
|
12
|
+
"""
|
|
13
|
+
Initialize the getmem client.
|
|
14
|
+
|
|
15
|
+
Full SDK coming soon — join the waitlist at https://getmem.ai
|
|
16
|
+
|
|
17
|
+
Args:
|
|
18
|
+
api_key: Your getmem API key (get one at https://getmem.ai)
|
|
19
|
+
"""
|
|
20
|
+
raise NotImplementedError(
|
|
21
|
+
"The getmem-ai SDK is coming soon. "
|
|
22
|
+
"Join the waitlist at https://getmem.ai to get early access."
|
|
23
|
+
)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: getmem-ai
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Persistent memory API for AI agents — getmem.ai
|
|
5
|
+
Author-email: "getmem.ai" <hello@getmem.ai>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://getmem.ai
|
|
8
|
+
Project-URL: Documentation, https://getmem.ai
|
|
9
|
+
Project-URL: Repository, https://github.com/NimbleV2023/getmem
|
|
10
|
+
Keywords: ai,memory,agents,llm,rag,context
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# getmem-ai
|
|
20
|
+
|
|
21
|
+
Persistent memory API for AI agents. Two API calls — your agent remembers everything.
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install getmem-ai
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
```python
|
|
28
|
+
import getmem_ai as getmem
|
|
29
|
+
|
|
30
|
+
mem = getmem.init("gm_your_api_key")
|
|
31
|
+
|
|
32
|
+
# After each turn — automatic extraction
|
|
33
|
+
mem.ingest("user_123", messages=messages)
|
|
34
|
+
|
|
35
|
+
# Before each turn — intelligent context
|
|
36
|
+
context = mem.get("user_123", query=user_message)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
**[Get early access → getmem.ai](https://getmem.ai)**
|
|
40
|
+
|
|
41
|
+
> Full SDK coming soon. Join the waitlist at [getmem.ai](https://getmem.ai).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
getmem_ai
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "getmem-ai"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Persistent memory API for AI agents — getmem.ai"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
authors = [{name = "getmem.ai", email = "hello@getmem.ai"}]
|
|
12
|
+
keywords = ["ai", "memory", "agents", "llm", "rag", "context"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
19
|
+
]
|
|
20
|
+
requires-python = ">=3.8"
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://getmem.ai"
|
|
24
|
+
Documentation = "https://getmem.ai"
|
|
25
|
+
Repository = "https://github.com/NimbleV2023/getmem"
|