@tangle-network/sandbox-ui 0.21.0 → 0.21.2
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/auth.js +3 -1
- package/dist/chat.d.ts +61 -1
- package/dist/chat.js +13 -3
- package/dist/{chunk-R6NONXFC.js → chunk-BP6ZTBI6.js} +2 -2
- package/dist/{chunk-IOB2PW5Z.js → chunk-R3ZMMCT3.js} +5 -13
- package/dist/chunk-SM7IJY4I.js +178 -0
- package/dist/{chunk-76IQLPW2.js → chunk-SOKKTB7W.js} +29 -5
- package/dist/{chunk-666PYT5K.js → chunk-TAAYDQGM.js} +101 -11
- package/dist/{chunk-7ZA5SEK3.js → chunk-UHFJXO24.js} +1 -177
- package/dist/{chunk-FLWMBK77.js → chunk-ZNYEJERQ.js} +403 -265
- package/dist/dashboard.d.ts +34 -1
- package/dist/dashboard.js +5 -2
- package/dist/globals.css +33 -198
- package/dist/hooks.d.ts +63 -2
- package/dist/hooks.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +23 -9
- package/dist/pages.js +134 -121
- package/dist/primitives.js +5 -3
- package/dist/styles.css +33 -198
- package/dist/workspace.js +1 -1
- package/package.json +12 -17
package/dist/index.js
CHANGED
|
@@ -58,7 +58,7 @@ import {
|
|
|
58
58
|
LoginLayout,
|
|
59
59
|
TangleLoginButton,
|
|
60
60
|
UserMenu
|
|
61
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-R3ZMMCT3.js";
|
|
62
62
|
import {
|
|
63
63
|
RealtimeSessionRegistry,
|
|
64
64
|
createAuthFetcher,
|
|
@@ -78,7 +78,7 @@ import {
|
|
|
78
78
|
useSdkSession,
|
|
79
79
|
useSessions,
|
|
80
80
|
useToolCallStream
|
|
81
|
-
} from "./chunk-
|
|
81
|
+
} from "./chunk-SOKKTB7W.js";
|
|
82
82
|
import {
|
|
83
83
|
usePtySession
|
|
84
84
|
} from "./chunk-AG7QDC2Q.js";
|
|
@@ -94,12 +94,17 @@ import {
|
|
|
94
94
|
ChatInput,
|
|
95
95
|
ChatMessage,
|
|
96
96
|
DEFAULT_REASONING_LEVEL_OPTIONS,
|
|
97
|
+
HARNESS_MODEL_POLICIES,
|
|
97
98
|
MessageList,
|
|
98
99
|
ReasoningLevelPicker,
|
|
99
100
|
ThinkingIndicator,
|
|
100
101
|
UserMessage,
|
|
101
|
-
createFetchTransport
|
|
102
|
-
|
|
102
|
+
createFetchTransport,
|
|
103
|
+
isModelCompatibleWithHarness,
|
|
104
|
+
modelProvider,
|
|
105
|
+
snapHarnessToModel,
|
|
106
|
+
snapModelToHarness
|
|
107
|
+
} from "./chunk-TAAYDQGM.js";
|
|
103
108
|
import {
|
|
104
109
|
ExpandedToolDetail,
|
|
105
110
|
InlineThinkingItem,
|
|
@@ -123,7 +128,7 @@ import {
|
|
|
123
128
|
TaskBoard,
|
|
124
129
|
TerminalPanel,
|
|
125
130
|
WorkspaceLayout
|
|
126
|
-
} from "./chunk-
|
|
131
|
+
} from "./chunk-BP6ZTBI6.js";
|
|
127
132
|
import {
|
|
128
133
|
OpenUIArtifactRenderer
|
|
129
134
|
} from "./chunk-AZ3AWMTM.js";
|
|
@@ -143,6 +148,7 @@ import {
|
|
|
143
148
|
GitPanel,
|
|
144
149
|
INSUFFICIENT_BALANCE_CODE,
|
|
145
150
|
InvoiceTable,
|
|
151
|
+
MetricAreaChart,
|
|
146
152
|
NetworkConfig,
|
|
147
153
|
NewSandboxCard,
|
|
148
154
|
OutOfCreditsModal,
|
|
@@ -180,7 +186,7 @@ import {
|
|
|
180
186
|
canAdminSandbox,
|
|
181
187
|
parseInsufficientBalance,
|
|
182
188
|
useSidebar
|
|
183
|
-
} from "./chunk-
|
|
189
|
+
} from "./chunk-ZNYEJERQ.js";
|
|
184
190
|
import {
|
|
185
191
|
BillingDashboard,
|
|
186
192
|
InfoPanel,
|
|
@@ -233,7 +239,6 @@ import {
|
|
|
233
239
|
InlineCode,
|
|
234
240
|
Input,
|
|
235
241
|
Label,
|
|
236
|
-
Logo,
|
|
237
242
|
Progress,
|
|
238
243
|
SegmentedControl,
|
|
239
244
|
Select,
|
|
@@ -264,7 +269,6 @@ import {
|
|
|
264
269
|
TabsContent,
|
|
265
270
|
TabsList,
|
|
266
271
|
TabsTrigger,
|
|
267
|
-
TangleKnot,
|
|
268
272
|
TerminalDisplay,
|
|
269
273
|
Textarea,
|
|
270
274
|
ThemeToggle,
|
|
@@ -275,7 +279,11 @@ import {
|
|
|
275
279
|
buttonVariants,
|
|
276
280
|
useTheme,
|
|
277
281
|
useToast
|
|
278
|
-
} from "./chunk-
|
|
282
|
+
} from "./chunk-SM7IJY4I.js";
|
|
283
|
+
import {
|
|
284
|
+
Logo,
|
|
285
|
+
TangleKnot
|
|
286
|
+
} from "./chunk-UHFJXO24.js";
|
|
279
287
|
import {
|
|
280
288
|
BackendSelector,
|
|
281
289
|
HARNESS_OPTIONS,
|
|
@@ -379,6 +387,7 @@ export {
|
|
|
379
387
|
GitPanel,
|
|
380
388
|
GlobResultsPreview,
|
|
381
389
|
GrepResultsPreview,
|
|
390
|
+
HARNESS_MODEL_POLICIES,
|
|
382
391
|
HARNESS_OPTIONS,
|
|
383
392
|
HarnessPicker,
|
|
384
393
|
INSUFFICIENT_BALANCE_CODE,
|
|
@@ -394,6 +403,7 @@ export {
|
|
|
394
403
|
Logo,
|
|
395
404
|
Markdown,
|
|
396
405
|
MessageList,
|
|
406
|
+
MetricAreaChart,
|
|
397
407
|
ModelPicker,
|
|
398
408
|
NetworkConfig,
|
|
399
409
|
NewSandboxCard,
|
|
@@ -527,8 +537,10 @@ export {
|
|
|
527
537
|
getToolErrorText,
|
|
528
538
|
getTotalRunningSessionCount,
|
|
529
539
|
hasBackgroundRunningSessions,
|
|
540
|
+
isModelCompatibleWithHarness,
|
|
530
541
|
isStreamingAtom,
|
|
531
542
|
messagesAtom,
|
|
543
|
+
modelProvider,
|
|
532
544
|
parseInsufficientBalance,
|
|
533
545
|
partMapAtom,
|
|
534
546
|
registerActiveSession,
|
|
@@ -539,6 +551,8 @@ export {
|
|
|
539
551
|
setActiveSessionError,
|
|
540
552
|
setActiveSessionRunning,
|
|
541
553
|
setForegroundActiveSession,
|
|
554
|
+
snapHarnessToModel,
|
|
555
|
+
snapModelToHarness,
|
|
542
556
|
timeAgo,
|
|
543
557
|
truncateText,
|
|
544
558
|
unregisterActiveSession,
|