hci-atrium 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.
- hci_atrium-0.0.1/.gitignore +53 -0
- hci_atrium-0.0.1/GUIDE.md +980 -0
- hci_atrium-0.0.1/LICENSE +21 -0
- hci_atrium-0.0.1/PKG-INFO +198 -0
- hci_atrium-0.0.1/README.md +173 -0
- hci_atrium-0.0.1/pyproject.toml +63 -0
- hci_atrium-0.0.1/src/hci_atrium/__init__.py +111 -0
- hci_atrium-0.0.1/src/hci_atrium/__main__.py +8 -0
- hci_atrium-0.0.1/src/hci_atrium/_audio_snippet.py +92 -0
- hci_atrium-0.0.1/src/hci_atrium/_brokers.py +96 -0
- hci_atrium-0.0.1/src/hci_atrium/_direct.py +162 -0
- hci_atrium-0.0.1/src/hci_atrium/_files.py +73 -0
- hci_atrium-0.0.1/src/hci_atrium/_operands.py +133 -0
- hci_atrium-0.0.1/src/hci_atrium/_room_ws.py +268 -0
- hci_atrium-0.0.1/src/hci_atrium/_shaping.py +802 -0
- hci_atrium-0.0.1/src/hci_atrium/_structured.py +119 -0
- hci_atrium-0.0.1/src/hci_atrium/_tools.py +91 -0
- hci_atrium-0.0.1/src/hci_atrium/_trace.py +327 -0
- hci_atrium-0.0.1/src/hci_atrium/_transcribe_stream.py +176 -0
- hci_atrium-0.0.1/src/hci_atrium/aio.py +4444 -0
- hci_atrium-0.0.1/src/hci_atrium/auth.py +398 -0
- hci_atrium-0.0.1/src/hci_atrium/cli.py +270 -0
- hci_atrium-0.0.1/src/hci_atrium/client.py +1022 -0
- hci_atrium-0.0.1/src/hci_atrium/dash.py +478 -0
- hci_atrium-0.0.1/src/hci_atrium/errors.py +60 -0
- hci_atrium-0.0.1/src/hci_atrium/ha.py +496 -0
- hci_atrium-0.0.1/src/hci_atrium/models.py +721 -0
- hci_atrium-0.0.1/src/hci_atrium/py.typed +0 -0
- hci_atrium-0.0.1/src/hci_atrium/reactive.py +59 -0
- hci_atrium-0.0.1/src/hci_atrium/rooms.py +1239 -0
- hci_atrium-0.0.1/src/hci_atrium/surveys.py +201 -0
- hci_atrium-0.0.1/tests/conftest.py +56 -0
- hci_atrium-0.0.1/tests/test_aio.py +666 -0
- hci_atrium-0.0.1/tests/test_audio_clips.py +226 -0
- hci_atrium-0.0.1/tests/test_audio_scores.py +301 -0
- hci_atrium-0.0.1/tests/test_audio_transcripts.py +249 -0
- hci_atrium-0.0.1/tests/test_audio_vectors.py +430 -0
- hci_atrium-0.0.1/tests/test_auth.py +205 -0
- hci_atrium-0.0.1/tests/test_brokers.py +290 -0
- hci_atrium-0.0.1/tests/test_cli.py +30 -0
- hci_atrium-0.0.1/tests/test_compare_similar.py +358 -0
- hci_atrium-0.0.1/tests/test_dash.py +352 -0
- hci_atrium-0.0.1/tests/test_direct.py +109 -0
- hci_atrium-0.0.1/tests/test_ha.py +594 -0
- hci_atrium-0.0.1/tests/test_layers.py +702 -0
- hci_atrium-0.0.1/tests/test_offers.py +1934 -0
- hci_atrium-0.0.1/tests/test_parity.py +81 -0
- hci_atrium-0.0.1/tests/test_playback.py +166 -0
- hci_atrium-0.0.1/tests/test_player_helpers.py +425 -0
- hci_atrium-0.0.1/tests/test_reactive.py +74 -0
- hci_atrium-0.0.1/tests/test_reconnect.py +467 -0
- hci_atrium-0.0.1/tests/test_room_messaging.py +263 -0
- hci_atrium-0.0.1/tests/test_room_ws.py +115 -0
- hci_atrium-0.0.1/tests/test_rooms.py +323 -0
- hci_atrium-0.0.1/tests/test_sdk.py +1066 -0
- hci_atrium-0.0.1/tests/test_sources.py +191 -0
- hci_atrium-0.0.1/tests/test_structured.py +198 -0
- hci_atrium-0.0.1/tests/test_surveys.py +418 -0
- hci_atrium-0.0.1/tests/test_trace.py +336 -0
- hci_atrium-0.0.1/tests/test_transcribe_live.py +685 -0
- hci_atrium-0.0.1/tests/test_viewer.py +367 -0
- hci_atrium-0.0.1/tests/test_wire_fixtures.py +610 -0
- hci_atrium-0.0.1/uv.lock +479 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.egg-info/
|
|
5
|
+
.eggs/
|
|
6
|
+
build/
|
|
7
|
+
dist/
|
|
8
|
+
|
|
9
|
+
# Virtual environments / uv
|
|
10
|
+
.venv/
|
|
11
|
+
venv/
|
|
12
|
+
# The SDK is a library — don't commit its lockfile (uv regenerates it on `uv run --project`).
|
|
13
|
+
clients/python/uv.lock
|
|
14
|
+
|
|
15
|
+
# Environment / secrets
|
|
16
|
+
.env
|
|
17
|
+
.env.*
|
|
18
|
+
!.env.example
|
|
19
|
+
|
|
20
|
+
# Test / type / lint caches
|
|
21
|
+
.pytest_cache/
|
|
22
|
+
.mypy_cache/
|
|
23
|
+
.ruff_cache/
|
|
24
|
+
.coverage
|
|
25
|
+
htmlcov/
|
|
26
|
+
|
|
27
|
+
# OS / editor
|
|
28
|
+
.DS_Store
|
|
29
|
+
.idea/
|
|
30
|
+
.vscode/
|
|
31
|
+
*.swp
|
|
32
|
+
|
|
33
|
+
# Built public tool pages — the /tools StaticFiles mount serves this dir; the source lives in
|
|
34
|
+
# the top-level tools/ app and the build is copied here by deploy/Docker (or by hand in dev).
|
|
35
|
+
src/atrium/tools/
|
|
36
|
+
|
|
37
|
+
# Local asset storage (dev)
|
|
38
|
+
storage/
|
|
39
|
+
|
|
40
|
+
# Local agent tooling (Claude preview launch config, etc.)
|
|
41
|
+
.claude/
|
|
42
|
+
|
|
43
|
+
# Model servers — downloaded model weights
|
|
44
|
+
.checkpoints/
|
|
45
|
+
|
|
46
|
+
# Model servers — everything servers/manage.py writes (contained; removed by `manage.py uninstall`)
|
|
47
|
+
servers/.models/
|
|
48
|
+
servers/.logs/
|
|
49
|
+
servers/.service/
|
|
50
|
+
servers/.run/
|
|
51
|
+
|
|
52
|
+
# graphify knowledge-graph artifacts (local, rebuildable)
|
|
53
|
+
graphify-out/
|