@tangle-network/agent-app 0.45.65 → 0.46.1
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.
- package/dist/assistant/index.js +3 -3
- package/dist/chat-react/index.js +2 -2
- package/dist/chunk-2RTYQU4W.js +441 -0
- package/dist/chunk-2RTYQU4W.js.map +1 -0
- package/dist/{chunk-23J72UUA.js → chunk-DINGA2MO.js} +94 -560
- package/dist/chunk-DINGA2MO.js.map +1 -0
- package/dist/{chunk-AWM4H5XR.js → chunk-MBKNKAN2.js} +6 -4
- package/dist/{chunk-AWM4H5XR.js.map → chunk-MBKNKAN2.js.map} +1 -1
- package/dist/chunk-YDOQE47G.js +518 -0
- package/dist/chunk-YDOQE47G.js.map +1 -0
- package/dist/stories/studio/fixtures.d.ts +0 -4
- package/dist/studio/generation.d.ts +16 -74
- package/dist/studio/index.d.ts +2 -2
- package/dist/studio/index.js +27 -25
- package/dist/studio/model-options.d.ts +61 -0
- package/dist/studio-react/composer-option-controls.d.ts +140 -0
- package/dist/studio-react/generation-notice.d.ts +18 -0
- package/dist/studio-react/index.d.ts +6 -12
- package/dist/studio-react/index.js +902 -827
- package/dist/studio-react/index.js.map +1 -1
- package/dist/studio-react/studio-composer.d.ts +34 -0
- package/dist/studio-react/studio-workspace.d.ts +2 -4
- package/dist/studio-react/studio.css +51 -0
- package/dist/theme/tokens.css +18 -0
- package/dist/web-react/index.js +11 -11
- package/package.json +1 -1
- package/dist/chunk-23J72UUA.js.map +0 -1
- package/dist/chunk-HSBJB46C.js +0 -305
- package/dist/chunk-HSBJB46C.js.map +0 -1
- package/dist/chunk-MLG6XKPV.js +0 -44
- package/dist/chunk-MLG6XKPV.js.map +0 -1
- package/dist/studio-react/avatar-composer.d.ts +0 -8
- package/dist/studio-react/composer-hero.d.ts +0 -12
- package/dist/studio-react/composer-shell.d.ts +0 -18
- package/dist/studio-react/image-composer.d.ts +0 -8
- package/dist/studio-react/publish-package-composer.d.ts +0 -18
- package/dist/studio-react/speech-composer.d.ts +0 -4
- package/dist/studio-react/transcription-composer.d.ts +0 -12
- package/dist/studio-react/video-composer.d.ts +0 -10
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The one thing a chat-shaped generator has to say about itself: each prompt is
|
|
3
|
+
* a fresh generation, and nothing carries over from the last one.
|
|
4
|
+
*
|
|
5
|
+
* A chat card sets the expectation that the thing on the other side remembers
|
|
6
|
+
* the conversation. This one does not, and the cost of learning that by
|
|
7
|
+
* experiment is a wasted generation. So the notice sits above the composer as a
|
|
8
|
+
* statement of fact rather than a warning — `text-foreground`, not muted, since
|
|
9
|
+
* a rule the reader must know before typing cannot be the quietest text on the
|
|
10
|
+
* page.
|
|
11
|
+
*
|
|
12
|
+
* The icon is INLINE in the text flow rather than a flex sibling, so a narrow
|
|
13
|
+
* viewport wraps it with the sentence instead of stranding a lone glyph beside
|
|
14
|
+
* a two-line block.
|
|
15
|
+
*/
|
|
16
|
+
export declare function GenerationNoticeChip({ className }: {
|
|
17
|
+
className?: string;
|
|
18
|
+
}): import("react").JSX.Element;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* `@tangle-network/agent-app/studio-react` — the media-generation studio
|
|
3
|
-
* surface: a
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
* card + detail views. `StudioWorkspace` is the ready-to-mount shell (header +
|
|
3
|
+
* surface: `StudioComposer`, a chat-shaped card over three generation types
|
|
4
|
+
* (image / video / speech) whose option pills are the SELECTED MODEL's own
|
|
5
|
+
* published parameters, plus a result canvas and a right-side asset-library
|
|
6
|
+
* drawer with card + detail views. `StudioWorkspace` is the ready-to-mount shell (header +
|
|
7
7
|
* composer + canvas + drawer + the merge/poll/revalidate orchestrator); the
|
|
8
8
|
* leaf components are exported so a product can compose its own shell.
|
|
9
9
|
*
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
*/
|
|
16
16
|
export * from './studio-workspace';
|
|
17
17
|
export * from './use-studio-generations';
|
|
18
|
-
export * from './composer
|
|
19
|
-
export * from './
|
|
18
|
+
export * from './studio-composer';
|
|
19
|
+
export * from './generation-notice';
|
|
20
20
|
export * from './studio-header';
|
|
21
21
|
export * from './studio-sheet';
|
|
22
22
|
export * from './result-canvas';
|
|
@@ -26,10 +26,4 @@ export * from './generation-grid';
|
|
|
26
26
|
export * from './generation-card';
|
|
27
27
|
export * from './generation-detail';
|
|
28
28
|
export * from './generation-detail-modal';
|
|
29
|
-
export * from './publish-package-composer';
|
|
30
29
|
export * from './type-config';
|
|
31
|
-
export * from './image-composer';
|
|
32
|
-
export * from './video-composer';
|
|
33
|
-
export * from './speech-composer';
|
|
34
|
-
export * from './avatar-composer';
|
|
35
|
-
export * from './transcription-composer';
|