stremai 1.9.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.
- stremai-1.9.2/PKG-INFO +62 -0
- stremai-1.9.2/README.md +19 -0
- stremai-1.9.2/pyproject.toml +55 -0
- stremai-1.9.2/setup.cfg +4 -0
- stremai-1.9.2/stremai/__init__.py +42 -0
- stremai-1.9.2/stremai.egg-info/PKG-INFO +62 -0
- stremai-1.9.2/stremai.egg-info/SOURCES.txt +8 -0
- stremai-1.9.2/stremai.egg-info/dependency_links.txt +1 -0
- stremai-1.9.2/stremai.egg-info/requires.txt +28 -0
- stremai-1.9.2/stremai.egg-info/top_level.txt +1 -0
stremai-1.9.2/PKG-INFO
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stremai
|
|
3
|
+
Version: 1.9.2
|
|
4
|
+
Summary: One brain for all your coding agents. Persistent memory that syncs across Claude Code, Codex, Cursor, and any MCP client. (StremAI is the current name for the agentbay SDK.)
|
|
5
|
+
Author-email: StremAI <hello@stremai.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://www.stremai.com
|
|
8
|
+
Project-URL: Repository, https://github.com/thomasjumper/stremai-app
|
|
9
|
+
Project-URL: Documentation, https://www.stremai.com/docs/python-sdk
|
|
10
|
+
Project-URL: Issues, https://github.com/thomasjumper/stremai-app/issues
|
|
11
|
+
Keywords: stremai,coding-agents,agent-memory,persistent-memory,mcp,claude-code,codex,cursor,openclaw,windsurf,claude,agents,llm-memory
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Requires-Python: >=3.9
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: agentbay>=1.9.2
|
|
25
|
+
Provides-Extra: crewai
|
|
26
|
+
Requires-Dist: agentbay[crewai]>=1.9.2; extra == "crewai"
|
|
27
|
+
Provides-Extra: langchain
|
|
28
|
+
Requires-Dist: agentbay[langchain]>=1.9.2; extra == "langchain"
|
|
29
|
+
Provides-Extra: autogen
|
|
30
|
+
Requires-Dist: agentbay[autogen]>=1.9.2; extra == "autogen"
|
|
31
|
+
Provides-Extra: llamaindex
|
|
32
|
+
Requires-Dist: agentbay[llamaindex]>=1.9.2; extra == "llamaindex"
|
|
33
|
+
Provides-Extra: langgraph
|
|
34
|
+
Requires-Dist: agentbay[langgraph]>=1.9.2; extra == "langgraph"
|
|
35
|
+
Provides-Extra: elevenlabs
|
|
36
|
+
Requires-Dist: agentbay[elevenlabs]>=1.9.2; extra == "elevenlabs"
|
|
37
|
+
Provides-Extra: pipecat
|
|
38
|
+
Requires-Dist: agentbay[pipecat]>=1.9.2; extra == "pipecat"
|
|
39
|
+
Provides-Extra: camel
|
|
40
|
+
Requires-Dist: agentbay[camel]>=1.9.2; extra == "camel"
|
|
41
|
+
Provides-Extra: all
|
|
42
|
+
Requires-Dist: agentbay[all]>=1.9.2; extra == "all"
|
|
43
|
+
|
|
44
|
+
# StremAI — Python SDK
|
|
45
|
+
|
|
46
|
+
**One brain for all your coding agents.** Persistent memory that syncs across Claude Code, Codex, Cursor, OpenClaw, and any MCP client.
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
pip install stremai
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
from stremai import StremAI
|
|
54
|
+
|
|
55
|
+
brain = StremAI() # local mode (no signup) — or StremAI(api_key="ab_live_...", project_id="...")
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
`StremAI` is the current name for the SDK previously published as **`agentbay`**. This
|
|
59
|
+
package re-exports the same implementation, so `from stremai import AgentBay` also works,
|
|
60
|
+
and the legacy `agentbay` package stays fully supported and maintained.
|
|
61
|
+
|
|
62
|
+
Full API reference: https://www.stremai.com/docs/python-sdk
|
stremai-1.9.2/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# StremAI — Python SDK
|
|
2
|
+
|
|
3
|
+
**One brain for all your coding agents.** Persistent memory that syncs across Claude Code, Codex, Cursor, OpenClaw, and any MCP client.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
pip install stremai
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```python
|
|
10
|
+
from stremai import StremAI
|
|
11
|
+
|
|
12
|
+
brain = StremAI() # local mode (no signup) — or StremAI(api_key="ab_live_...", project_id="...")
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
`StremAI` is the current name for the SDK previously published as **`agentbay`**. This
|
|
16
|
+
package re-exports the same implementation, so `from stremai import AgentBay` also works,
|
|
17
|
+
and the legacy `agentbay` package stays fully supported and maintained.
|
|
18
|
+
|
|
19
|
+
Full API reference: https://www.stremai.com/docs/python-sdk
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "stremai"
|
|
7
|
+
# Tracks the agentbay implementation it wraps. Bump in lockstep with
|
|
8
|
+
# packages/agentbay-python when that releases a new version.
|
|
9
|
+
version = "1.9.2"
|
|
10
|
+
description = "One brain for all your coding agents. Persistent memory that syncs across Claude Code, Codex, Cursor, and any MCP client. (StremAI is the current name for the agentbay SDK.)"
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
license = "MIT"
|
|
13
|
+
requires-python = ">=3.9"
|
|
14
|
+
authors = [
|
|
15
|
+
{ name = "StremAI", email = "hello@stremai.com" },
|
|
16
|
+
]
|
|
17
|
+
keywords = ["stremai", "coding-agents", "agent-memory", "persistent-memory", "mcp", "claude-code", "codex", "cursor", "openclaw", "windsurf", "claude", "agents", "llm-memory"]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 4 - Beta",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.9",
|
|
23
|
+
"Programming Language :: Python :: 3.10",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
27
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
28
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
29
|
+
]
|
|
30
|
+
# StremAI re-exports the agentbay implementation; the dependency pins the
|
|
31
|
+
# matching release so `from stremai import StremAI` is always backed by code.
|
|
32
|
+
dependencies = [
|
|
33
|
+
"agentbay>=1.9.2",
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
[project.optional-dependencies]
|
|
37
|
+
# Mirror agentbay's extras so `pip install stremai[crewai]` etc. pass through.
|
|
38
|
+
crewai = ["agentbay[crewai]>=1.9.2"]
|
|
39
|
+
langchain = ["agentbay[langchain]>=1.9.2"]
|
|
40
|
+
autogen = ["agentbay[autogen]>=1.9.2"]
|
|
41
|
+
llamaindex = ["agentbay[llamaindex]>=1.9.2"]
|
|
42
|
+
langgraph = ["agentbay[langgraph]>=1.9.2"]
|
|
43
|
+
elevenlabs = ["agentbay[elevenlabs]>=1.9.2"]
|
|
44
|
+
pipecat = ["agentbay[pipecat]>=1.9.2"]
|
|
45
|
+
camel = ["agentbay[camel]>=1.9.2"]
|
|
46
|
+
all = ["agentbay[all]>=1.9.2"]
|
|
47
|
+
|
|
48
|
+
[project.urls]
|
|
49
|
+
Homepage = "https://www.stremai.com"
|
|
50
|
+
Repository = "https://github.com/thomasjumper/stremai-app"
|
|
51
|
+
Documentation = "https://www.stremai.com/docs/python-sdk"
|
|
52
|
+
Issues = "https://github.com/thomasjumper/stremai-app/issues"
|
|
53
|
+
|
|
54
|
+
[tool.setuptools.packages.find]
|
|
55
|
+
include = ["stremai*"]
|
stremai-1.9.2/setup.cfg
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"""StremAI — one brain for all your coding agents.
|
|
2
|
+
|
|
3
|
+
StremAI is the current name for the SDK formerly published as ``agentbay``.
|
|
4
|
+
This package re-exports the full ``agentbay`` API unchanged, so::
|
|
5
|
+
|
|
6
|
+
from stremai import StremAI # brand alias of AgentBay
|
|
7
|
+
from stremai import AgentBay # original name, still available
|
|
8
|
+
|
|
9
|
+
are equivalent to importing from ``agentbay``. The two distributions share a
|
|
10
|
+
single implementation (``stremai`` depends on ``agentbay``); the legacy
|
|
11
|
+
``agentbay`` package remains fully supported.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
from agentbay import ( # noqa: F401 (re-exported public API)
|
|
15
|
+
AgentBay,
|
|
16
|
+
AgentBayError,
|
|
17
|
+
AuthenticationError,
|
|
18
|
+
NotFoundError,
|
|
19
|
+
RateLimitError,
|
|
20
|
+
LocalMemory,
|
|
21
|
+
OfflineProject,
|
|
22
|
+
OfflineTeam,
|
|
23
|
+
SyncEngine,
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
# Brand alias: StremAI is the canonical class name going forward.
|
|
27
|
+
StremAI = AgentBay
|
|
28
|
+
|
|
29
|
+
__version__ = "1.9.2"
|
|
30
|
+
|
|
31
|
+
__all__ = [
|
|
32
|
+
"StremAI",
|
|
33
|
+
"AgentBay",
|
|
34
|
+
"AgentBayError",
|
|
35
|
+
"AuthenticationError",
|
|
36
|
+
"NotFoundError",
|
|
37
|
+
"RateLimitError",
|
|
38
|
+
"LocalMemory",
|
|
39
|
+
"OfflineProject",
|
|
40
|
+
"OfflineTeam",
|
|
41
|
+
"SyncEngine",
|
|
42
|
+
]
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stremai
|
|
3
|
+
Version: 1.9.2
|
|
4
|
+
Summary: One brain for all your coding agents. Persistent memory that syncs across Claude Code, Codex, Cursor, and any MCP client. (StremAI is the current name for the agentbay SDK.)
|
|
5
|
+
Author-email: StremAI <hello@stremai.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://www.stremai.com
|
|
8
|
+
Project-URL: Repository, https://github.com/thomasjumper/stremai-app
|
|
9
|
+
Project-URL: Documentation, https://www.stremai.com/docs/python-sdk
|
|
10
|
+
Project-URL: Issues, https://github.com/thomasjumper/stremai-app/issues
|
|
11
|
+
Keywords: stremai,coding-agents,agent-memory,persistent-memory,mcp,claude-code,codex,cursor,openclaw,windsurf,claude,agents,llm-memory
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Requires-Python: >=3.9
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: agentbay>=1.9.2
|
|
25
|
+
Provides-Extra: crewai
|
|
26
|
+
Requires-Dist: agentbay[crewai]>=1.9.2; extra == "crewai"
|
|
27
|
+
Provides-Extra: langchain
|
|
28
|
+
Requires-Dist: agentbay[langchain]>=1.9.2; extra == "langchain"
|
|
29
|
+
Provides-Extra: autogen
|
|
30
|
+
Requires-Dist: agentbay[autogen]>=1.9.2; extra == "autogen"
|
|
31
|
+
Provides-Extra: llamaindex
|
|
32
|
+
Requires-Dist: agentbay[llamaindex]>=1.9.2; extra == "llamaindex"
|
|
33
|
+
Provides-Extra: langgraph
|
|
34
|
+
Requires-Dist: agentbay[langgraph]>=1.9.2; extra == "langgraph"
|
|
35
|
+
Provides-Extra: elevenlabs
|
|
36
|
+
Requires-Dist: agentbay[elevenlabs]>=1.9.2; extra == "elevenlabs"
|
|
37
|
+
Provides-Extra: pipecat
|
|
38
|
+
Requires-Dist: agentbay[pipecat]>=1.9.2; extra == "pipecat"
|
|
39
|
+
Provides-Extra: camel
|
|
40
|
+
Requires-Dist: agentbay[camel]>=1.9.2; extra == "camel"
|
|
41
|
+
Provides-Extra: all
|
|
42
|
+
Requires-Dist: agentbay[all]>=1.9.2; extra == "all"
|
|
43
|
+
|
|
44
|
+
# StremAI — Python SDK
|
|
45
|
+
|
|
46
|
+
**One brain for all your coding agents.** Persistent memory that syncs across Claude Code, Codex, Cursor, OpenClaw, and any MCP client.
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
pip install stremai
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
from stremai import StremAI
|
|
54
|
+
|
|
55
|
+
brain = StremAI() # local mode (no signup) — or StremAI(api_key="ab_live_...", project_id="...")
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
`StremAI` is the current name for the SDK previously published as **`agentbay`**. This
|
|
59
|
+
package re-exports the same implementation, so `from stremai import AgentBay` also works,
|
|
60
|
+
and the legacy `agentbay` package stays fully supported and maintained.
|
|
61
|
+
|
|
62
|
+
Full API reference: https://www.stremai.com/docs/python-sdk
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
agentbay>=1.9.2
|
|
2
|
+
|
|
3
|
+
[all]
|
|
4
|
+
agentbay[all]>=1.9.2
|
|
5
|
+
|
|
6
|
+
[autogen]
|
|
7
|
+
agentbay[autogen]>=1.9.2
|
|
8
|
+
|
|
9
|
+
[camel]
|
|
10
|
+
agentbay[camel]>=1.9.2
|
|
11
|
+
|
|
12
|
+
[crewai]
|
|
13
|
+
agentbay[crewai]>=1.9.2
|
|
14
|
+
|
|
15
|
+
[elevenlabs]
|
|
16
|
+
agentbay[elevenlabs]>=1.9.2
|
|
17
|
+
|
|
18
|
+
[langchain]
|
|
19
|
+
agentbay[langchain]>=1.9.2
|
|
20
|
+
|
|
21
|
+
[langgraph]
|
|
22
|
+
agentbay[langgraph]>=1.9.2
|
|
23
|
+
|
|
24
|
+
[llamaindex]
|
|
25
|
+
agentbay[llamaindex]>=1.9.2
|
|
26
|
+
|
|
27
|
+
[pipecat]
|
|
28
|
+
agentbay[pipecat]>=1.9.2
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
stremai
|