Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/standards/FAKE_SCAFFOLD_INVENTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ DEFERRED Intentionally postponed; ADR or phase plan justifies it

| Component | Status | File | What's missing | Replace by | Blocked on |
|-----------|--------|------|----------------|------------|------------|
| `close()` LEAVE message | PARTIAL | `pocketstation/station.py` | Relay LEAVE message not sent on `close()`. WebSocket closes but relay does not receive LEAVE type. Room state may be stale until TTL. | Phase 5 | None — straightforward fix |
| WebRTC transport | DEFERRED | N/A | Python SDK is WebSocket-only. No WebRTC / audio capture planned for this binding. | Not planned | Architecture decision: Python is listener/voice-agent tier only |

---
Expand Down
5 changes: 1 addition & 4 deletions pocketstation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
"""PocketStation Python SDK. Phase 5."""
"""PocketStation Python SDK — spec §12.1."""
from .station import PocketStation
from .client import PocketStation as PocketStationClient, PocketStationSession
from .types import AudioFrame, AudioMode, IceServer, PocketStationError, RoomCredentials

__version__ = "0.1.0"
__all__ = [
"PocketStation",
"PocketStationClient",
"PocketStationSession",
"AudioFrame",
"AudioMode",
"RoomCredentials",
Expand Down
137 changes: 0 additions & 137 deletions pocketstation/client.py

This file was deleted.

Loading
Loading