Skip to content

Commit 9cd0e6d

Browse files
committed
rebrand: PostHog→Insights in MCP analytics
1 parent 3d85fc1 commit 9cd0e6d

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

pkg/hanzo-cli/hanzo_cli/k8s/health.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"s3.hanzo.ai",
4242
"search.hanzo.ai",
4343
"gateway.hanzo.ai",
44-
"hanzo.space",
44+
"s3.hanzo.ai",
4545
],
4646
"adnexus": [
4747
"ad.nexus",

pkg/hanzo-mcp/hanzo_mcp/analytics/insights_analytics.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020

2121
# Try to import Insights client (used as backend), but make it optional
2222
try:
23-
from insights import Posthog
23+
from insights import Insights
2424

2525
INSIGHTS_AVAILABLE = True
2626
except ImportError:
2727
INSIGHTS_AVAILABLE = False
28-
Posthog = None
28+
Insights = None
2929

3030

3131
F = TypeVar("F", bound=Callable[..., Any])
@@ -64,7 +64,7 @@ def __init__(self, config: Optional[AnalyticsConfig] = None):
6464

6565
# Initialize backend if available and configured
6666
if INSIGHTS_AVAILABLE and self.config.api_key and self.config.enabled:
67-
self._client = Posthog(
67+
self._client = Insights(
6868
self.config.api_key,
6969
host=self.config.host,
7070
debug=self.config.debug,

pkg/hanzo-s3/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ uv add hanzo-s3
2020
from hanzo_s3 import S3Client
2121

2222
client = S3Client(
23-
"s3.hanzo.space",
23+
"s3-api.hanzo.ai",
2424
access_key="YOUR-ACCESS-KEY",
2525
secret_key="YOUR-SECRET-KEY",
2626
)
@@ -41,7 +41,7 @@ client.fget_object("my-bucket", "remote/path.txt", "/local/download.txt")
4141
```python
4242
from hanzo_s3.admin import S3Admin
4343

44-
admin = S3Admin("s3.hanzo.space", credentials=provider)
44+
admin = S3Admin("s3-api.hanzo.ai", credentials=provider)
4545
info = admin.info()
4646
```
4747

@@ -60,6 +60,6 @@ All original `minio` names are also re-exported for backward compatibility.
6060
## Links
6161

6262
- Documentation: https://docs.hanzo.ai/s3
63-
- Hanzo Space: https://hanzo.space
63+
- Hanzo Storage: https://s3.hanzo.ai
6464
- Source (upstream): https://github.com/hanzos3/py-sdk
6565
- Source (SDK): https://github.com/hanzoai/python-sdk

pkg/hanzo-s3/hanzo_s3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from hanzo_s3 import S3Client
99
1010
client = S3Client(
11-
"s3.hanzo.space",
11+
"s3-api.hanzo.ai",
1212
access_key="YOUR-ACCESS-KEY",
1313
secret_key="YOUR-SECRET-KEY",
1414
)

pkg/hanzo-s3/hanzo_s3/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from hanzo_s3.admin import S3Admin
66
77
admin = S3Admin(
8-
"s3.hanzo.space",
8+
"s3-api.hanzo.ai",
99
credentials=provider,
1010
)
1111

pkg/hanzo-s3/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dev = [
3434
]
3535

3636
[project.urls]
37-
Homepage = "https://hanzo.space"
37+
Homepage = "https://s3.hanzo.ai"
3838
Documentation = "https://docs.hanzo.ai/s3"
3939
Repository = "https://github.com/hanzos3/py-sdk"
4040
Source = "https://github.com/hanzoai/python-sdk"

pkg/hanzo/src/hanzo/commands/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def _parse_s3_path(path: str) -> tuple[str, str]:
9090

9191
@click.group(name="s3")
9292
def storage_group():
93-
"""Hanzo S3 — S3-compatible object storage (hanzo.space / s3.hanzo.ai).
93+
"""Hanzo S3 — S3-compatible object storage (s3.hanzo.ai).
9494
9595
\b
9696
Buckets:

0 commit comments

Comments
 (0)