@tangle-network/agent-app 0.45.2 → 0.45.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.
- package/dist/assistant/index.js +2 -2
- package/dist/assistant/index.js.map +1 -1
- package/dist/{chunk-RDK3CN7Y.js → chunk-YRFB2KEA.js} +95 -86
- package/dist/chunk-YRFB2KEA.js.map +1 -0
- package/dist/web-react/index.d.ts +9 -2
- package/dist/web-react/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-RDK3CN7Y.js.map +0 -1
|
@@ -400,9 +400,16 @@ interface ChatComposerProps {
|
|
|
400
400
|
seed?: string | null;
|
|
401
401
|
onSeedApplied?: () => void;
|
|
402
402
|
/** Inline controls (e.g. `<ModelPicker/>` + `<EffortPicker/>` or
|
|
403
|
-
* `<AgentSessionControls/>`).
|
|
403
|
+
* `<AgentSessionControls/>`). */
|
|
404
404
|
controls?: ReactNode;
|
|
405
|
-
|
|
405
|
+
/**
|
|
406
|
+
* Where {@link controls} sit. `inline` (default) puts them on the card's own
|
|
407
|
+
* action row, beside attach and Send — the model a turn will use reads as
|
|
408
|
+
* part of the input rather than as a separate widget floating above it.
|
|
409
|
+
* `above` keeps them outside the card, for a host that wants the input to be
|
|
410
|
+
* nothing but the input.
|
|
411
|
+
*/
|
|
412
|
+
controlsPlacement?: 'above' | 'inline';
|
|
406
413
|
/** Attachments are opt-in: pass `onAttach` to show the attach button, accept
|
|
407
414
|
* drag-and-drop onto the input, and render `pendingFiles` chips. */
|
|
408
415
|
onAttach?: (files: FileList) => void;
|
package/dist/web-react/index.js
CHANGED
package/package.json
CHANGED