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.
Files changed (63) hide show
  1. hci_atrium-0.0.1/.gitignore +53 -0
  2. hci_atrium-0.0.1/GUIDE.md +980 -0
  3. hci_atrium-0.0.1/LICENSE +21 -0
  4. hci_atrium-0.0.1/PKG-INFO +198 -0
  5. hci_atrium-0.0.1/README.md +173 -0
  6. hci_atrium-0.0.1/pyproject.toml +63 -0
  7. hci_atrium-0.0.1/src/hci_atrium/__init__.py +111 -0
  8. hci_atrium-0.0.1/src/hci_atrium/__main__.py +8 -0
  9. hci_atrium-0.0.1/src/hci_atrium/_audio_snippet.py +92 -0
  10. hci_atrium-0.0.1/src/hci_atrium/_brokers.py +96 -0
  11. hci_atrium-0.0.1/src/hci_atrium/_direct.py +162 -0
  12. hci_atrium-0.0.1/src/hci_atrium/_files.py +73 -0
  13. hci_atrium-0.0.1/src/hci_atrium/_operands.py +133 -0
  14. hci_atrium-0.0.1/src/hci_atrium/_room_ws.py +268 -0
  15. hci_atrium-0.0.1/src/hci_atrium/_shaping.py +802 -0
  16. hci_atrium-0.0.1/src/hci_atrium/_structured.py +119 -0
  17. hci_atrium-0.0.1/src/hci_atrium/_tools.py +91 -0
  18. hci_atrium-0.0.1/src/hci_atrium/_trace.py +327 -0
  19. hci_atrium-0.0.1/src/hci_atrium/_transcribe_stream.py +176 -0
  20. hci_atrium-0.0.1/src/hci_atrium/aio.py +4444 -0
  21. hci_atrium-0.0.1/src/hci_atrium/auth.py +398 -0
  22. hci_atrium-0.0.1/src/hci_atrium/cli.py +270 -0
  23. hci_atrium-0.0.1/src/hci_atrium/client.py +1022 -0
  24. hci_atrium-0.0.1/src/hci_atrium/dash.py +478 -0
  25. hci_atrium-0.0.1/src/hci_atrium/errors.py +60 -0
  26. hci_atrium-0.0.1/src/hci_atrium/ha.py +496 -0
  27. hci_atrium-0.0.1/src/hci_atrium/models.py +721 -0
  28. hci_atrium-0.0.1/src/hci_atrium/py.typed +0 -0
  29. hci_atrium-0.0.1/src/hci_atrium/reactive.py +59 -0
  30. hci_atrium-0.0.1/src/hci_atrium/rooms.py +1239 -0
  31. hci_atrium-0.0.1/src/hci_atrium/surveys.py +201 -0
  32. hci_atrium-0.0.1/tests/conftest.py +56 -0
  33. hci_atrium-0.0.1/tests/test_aio.py +666 -0
  34. hci_atrium-0.0.1/tests/test_audio_clips.py +226 -0
  35. hci_atrium-0.0.1/tests/test_audio_scores.py +301 -0
  36. hci_atrium-0.0.1/tests/test_audio_transcripts.py +249 -0
  37. hci_atrium-0.0.1/tests/test_audio_vectors.py +430 -0
  38. hci_atrium-0.0.1/tests/test_auth.py +205 -0
  39. hci_atrium-0.0.1/tests/test_brokers.py +290 -0
  40. hci_atrium-0.0.1/tests/test_cli.py +30 -0
  41. hci_atrium-0.0.1/tests/test_compare_similar.py +358 -0
  42. hci_atrium-0.0.1/tests/test_dash.py +352 -0
  43. hci_atrium-0.0.1/tests/test_direct.py +109 -0
  44. hci_atrium-0.0.1/tests/test_ha.py +594 -0
  45. hci_atrium-0.0.1/tests/test_layers.py +702 -0
  46. hci_atrium-0.0.1/tests/test_offers.py +1934 -0
  47. hci_atrium-0.0.1/tests/test_parity.py +81 -0
  48. hci_atrium-0.0.1/tests/test_playback.py +166 -0
  49. hci_atrium-0.0.1/tests/test_player_helpers.py +425 -0
  50. hci_atrium-0.0.1/tests/test_reactive.py +74 -0
  51. hci_atrium-0.0.1/tests/test_reconnect.py +467 -0
  52. hci_atrium-0.0.1/tests/test_room_messaging.py +263 -0
  53. hci_atrium-0.0.1/tests/test_room_ws.py +115 -0
  54. hci_atrium-0.0.1/tests/test_rooms.py +323 -0
  55. hci_atrium-0.0.1/tests/test_sdk.py +1066 -0
  56. hci_atrium-0.0.1/tests/test_sources.py +191 -0
  57. hci_atrium-0.0.1/tests/test_structured.py +198 -0
  58. hci_atrium-0.0.1/tests/test_surveys.py +418 -0
  59. hci_atrium-0.0.1/tests/test_trace.py +336 -0
  60. hci_atrium-0.0.1/tests/test_transcribe_live.py +685 -0
  61. hci_atrium-0.0.1/tests/test_viewer.py +367 -0
  62. hci_atrium-0.0.1/tests/test_wire_fixtures.py +610 -0
  63. 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/