@tangle-network/agent-app 0.46.1 → 0.46.3

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 (49) hide show
  1. package/README.md +7 -7
  2. package/dist/assistant/index.js +2 -1
  3. package/dist/assistant/index.js.map +1 -1
  4. package/dist/chunk-KKBTPZIE.js +805 -0
  5. package/dist/chunk-KKBTPZIE.js.map +1 -0
  6. package/dist/{chunk-2RTYQU4W.js → chunk-LEGZX5MQ.js} +150 -4
  7. package/dist/chunk-LEGZX5MQ.js.map +1 -0
  8. package/dist/{chunk-MBKNKAN2.js → chunk-RZ6MYWMJ.js} +416 -1210
  9. package/dist/chunk-RZ6MYWMJ.js.map +1 -0
  10. package/dist/stories/studio/StudioProviders.d.ts +10 -0
  11. package/dist/stories/studio/fixtures.d.ts +10 -2
  12. package/dist/studio/audio-preview.d.ts +12 -0
  13. package/dist/studio/generation.d.ts +22 -1
  14. package/dist/studio/index.d.ts +2 -0
  15. package/dist/studio/index.js +29 -1
  16. package/dist/studio/ports.d.ts +54 -0
  17. package/dist/studio-react/composer-option-controls.d.ts +19 -8
  18. package/dist/studio-react/download-generations.d.ts +4 -0
  19. package/dist/studio-react/index.d.ts +38 -22
  20. package/dist/studio-react/index.js +2198 -545
  21. package/dist/studio-react/index.js.map +1 -1
  22. package/dist/studio-react/media-tile.d.ts +21 -0
  23. package/dist/studio-react/media-viewer.d.ts +12 -0
  24. package/dist/studio-react/studio-confirm.d.ts +8 -0
  25. package/dist/studio-react/studio-generation-screen.d.ts +42 -0
  26. package/dist/studio-react/studio-history-screen.d.ts +28 -0
  27. package/dist/studio-react/studio-home-screen.d.ts +20 -0
  28. package/dist/studio-react/studio-playback.d.ts +31 -0
  29. package/dist/studio-react/studio-toasts.d.ts +21 -0
  30. package/dist/studio-react/studio.css +142 -72
  31. package/dist/studio-react/use-batch-navigation.d.ts +20 -0
  32. package/dist/studio-react/use-deferred-delete.d.ts +19 -0
  33. package/dist/studio-react/use-generation-history.d.ts +22 -0
  34. package/dist/studio-react/vault-path-popover.d.ts +12 -0
  35. package/dist/web-react/index.js +8 -6
  36. package/package.json +11 -16
  37. package/dist/chunk-2RTYQU4W.js.map +0 -1
  38. package/dist/chunk-MBKNKAN2.js.map +0 -1
  39. package/dist/studio-react/generation-card.d.ts +0 -9
  40. package/dist/studio-react/generation-detail-modal.d.ts +0 -11
  41. package/dist/studio-react/generation-detail.d.ts +0 -6
  42. package/dist/studio-react/generation-grid.d.ts +0 -15
  43. package/dist/studio-react/library-drawer.d.ts +0 -12
  44. package/dist/studio-react/library-panel.d.ts +0 -15
  45. package/dist/studio-react/result-canvas.d.ts +0 -6
  46. package/dist/studio-react/studio-header.d.ts +0 -5
  47. package/dist/studio-react/studio-sheet.d.ts +0 -12
  48. package/dist/studio-react/studio-workspace.d.ts +0 -21
  49. package/dist/studio-react/type-config.d.ts +0 -11
package/README.md CHANGED
@@ -35,14 +35,14 @@ pnpm add @tangle-network/agent-eval @tangle-network/agent-integrations
35
35
 
36
36
  | Peer | Required by | Range |
37
37
  |---|---|---|
38
- | `@tangle-network/agent-eval` | `/eval`, `/eval-campaign`, `/profile`, `/knowledge` | `>=0.143.0` |
39
- | `@tangle-network/agent-runtime` | `/runtime`, `/chat-routes` | `>=0.126.0` |
38
+ | `@tangle-network/agent-eval` | `/eval`, `/eval-campaign`, `/profile`, `/knowledge` | `>=0.149.0 <0.150.0` |
39
+ | `@tangle-network/agent-runtime` | `/runtime`, `/chat-routes` | `>=0.142.0 <0.143.0` |
40
40
  | `@tangle-network/agent-integrations` | `/integrations` | `>=0.52.0` |
41
- | `@tangle-network/agent-interface` | `/interactions`, `/chat-store`, `/harness` | `>=0.42.1 <0.44.0` |
42
- | `@tangle-network/sandbox` | `/sandbox` | `>=0.15.2` |
43
- | `@tangle-network/agent-knowledge` | `/knowledge-loop` | `>=6.1.11` |
44
- | `@tangle-network/agent-profile-materialize` | `/skills-placement` | `>=0.9.2` |
45
- | `@tangle-network/sandbox-ui` | `/brand`, `/studio-react`, `/work-product-react`, `/workspace-react` | `>=0.91.5` |
41
+ | `@tangle-network/agent-interface` | `/interactions`, `/chat-store`, `/harness` | `^1.0.0` |
42
+ | `@tangle-network/sandbox` | `/sandbox` | `>=0.29.0 <0.30.0` |
43
+ | `@tangle-network/agent-knowledge` | `/knowledge-loop` | `^8.0.10` |
44
+ | `@tangle-network/agent-profile-materialize` | `/skills-placement` | `>=0.16.0` |
45
+ | `@tangle-network/sandbox-ui` | `/brand`, `/work-product-react`, `/workspace-react` | `>=0.105.0` |
46
46
 
47
47
  All of these except `agent-eval`, `agent-integrations`, and `agent-interface` are declared **optional** peers, so a product that never imports the subpath installs nothing.
48
48
 
@@ -2,7 +2,8 @@ import {
2
2
  ChatComposer,
3
3
  ChatEmptyState,
4
4
  ChatMessages
5
- } from "../chunk-MBKNKAN2.js";
5
+ } from "../chunk-RZ6MYWMJ.js";
6
+ import "../chunk-KKBTPZIE.js";
6
7
  import "../chunk-FBVLEGEG.js";
7
8
  import "../chunk-ENLRJYVW.js";
8
9
  import "../chunk-GEYACSFW.js";