aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2026-01-22 20:50:51 -0700
committerDhravya Shah <[email protected]>2026-01-22 20:50:51 -0700
commit1c6b7800a850a6c4bfe12d3ffb88790a77b3e8bf (patch)
tree86ac58b4c9f51e272c57d26ab47a6b5ad8e19e0b
parentdocs: gmail connector (#690) (diff)
downloadsupermemory-1c6b7800a850a6c4bfe12d3ffb88790a77b3e8bf.tar.xz
supermemory-1c6b7800a850a6c4bfe12d3ffb88790a77b3e8bf.zip
chore: bump package versions
-rw-r--r--packages/pipecat-sdk-python/pyproject.toml2
-rw-r--r--packages/pipecat-sdk-python/src/supermemory_pipecat/__init__.py10
-rw-r--r--packages/tools/package.json2
3 files changed, 7 insertions, 7 deletions
diff --git a/packages/pipecat-sdk-python/pyproject.toml b/packages/pipecat-sdk-python/pyproject.toml
index 21ce0cdf..1c25b6a2 100644
--- a/packages/pipecat-sdk-python/pyproject.toml
+++ b/packages/pipecat-sdk-python/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "supermemory-pipecat"
-version = "0.1.0"
+version = "0.1.1"
description = "Supermemory integration for Pipecat - memory-enhanced conversational AI pipelines"
readme = "README.md"
license = "MIT"
diff --git a/packages/pipecat-sdk-python/src/supermemory_pipecat/__init__.py b/packages/pipecat-sdk-python/src/supermemory_pipecat/__init__.py
index 35b888cc..aeb190c9 100644
--- a/packages/pipecat-sdk-python/src/supermemory_pipecat/__init__.py
+++ b/packages/pipecat-sdk-python/src/supermemory_pipecat/__init__.py
@@ -25,22 +25,22 @@ Example:
```
"""
-from .service import SupermemoryPipecatService
from .exceptions import (
- SupermemoryPipecatError,
+ APIError,
ConfigurationError,
MemoryRetrievalError,
MemoryStorageError,
- APIError,
NetworkError,
+ SupermemoryPipecatError,
)
+from .service import SupermemoryPipecatService
from .utils import (
- get_last_user_message,
deduplicate_memories,
format_memories_to_text,
+ get_last_user_message,
)
-__version__ = "0.1.0"
+__version__ = "0.1.1"
__all__ = [
# Main service
diff --git a/packages/tools/package.json b/packages/tools/package.json
index 82187aaa..c32cecc0 100644
--- a/packages/tools/package.json
+++ b/packages/tools/package.json
@@ -1,7 +1,7 @@
{
"name": "@supermemory/tools",
"type": "module",
- "version": "1.3.67",
+ "version": "1.3.68",
"description": "Memory tools for AI SDK and OpenAI function calling with supermemory",
"scripts": {
"build": "tsdown",