@tonyclaw/agent-inspector 2.0.36 → 2.0.38

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 (86) hide show
  1. package/.output/nitro.json +1 -1
  2. package/.output/public/assets/{CompareDrawer-Bg2mo0NZ.js → CompareDrawer-hc5OoAls.js} +1 -1
  3. package/.output/public/assets/{ProxyViewerContainer-C_Lq5T5V.js → ProxyViewerContainer-BMKBs8Qz.js} +35 -35
  4. package/.output/public/assets/{ReplayDialog-Bns-ayOg.js → ReplayDialog-CN-KM2nu.js} +1 -1
  5. package/.output/public/assets/{RequestAnatomy-BBcPAIWx.js → RequestAnatomy-B1kTlAUk.js} +1 -1
  6. package/.output/public/assets/{ResponseView-DSRS3rHt.js → ResponseView-BchUjKjt.js} +1 -1
  7. package/.output/public/assets/{StreamingChunkSequence-CzZxKE5-.js → StreamingChunkSequence-BQOxI9Hi.js} +1 -1
  8. package/.output/public/assets/_sessionId-CVw5e8TK.js +1 -0
  9. package/.output/public/assets/index-BdUTMQL6.js +1 -0
  10. package/.output/public/assets/{main-BVKRHBUl.js → main-Blykwzsn.js} +2 -2
  11. package/.output/server/_libs/lucide-react.mjs +114 -94
  12. package/.output/server/{_sessionId-Dsd36Yhc.mjs → _sessionId-BUNZz2zZ.mjs} +2 -2
  13. package/.output/server/_ssr/{CompareDrawer-BbJ5UdYD.mjs → CompareDrawer-VaDYPM5G.mjs} +3 -3
  14. package/.output/server/_ssr/{ProxyViewerContainer-7igCY291.mjs → ProxyViewerContainer-CpdWs7Pk.mjs} +801 -785
  15. package/.output/server/_ssr/{ReplayDialog-CgWweshq.mjs → ReplayDialog-DbfIjJhb.mjs} +4 -4
  16. package/.output/server/_ssr/{RequestAnatomy-BAyM_j7a.mjs → RequestAnatomy-CrD8h6As.mjs} +3 -3
  17. package/.output/server/_ssr/{ResponseView-iZQH7EYu.mjs → ResponseView-BalvDwtU.mjs} +3 -3
  18. package/.output/server/_ssr/{StreamingChunkSequence-BU6hyHMg.mjs → StreamingChunkSequence-RxatDbPV.mjs} +2 -2
  19. package/.output/server/_ssr/{index-D7QF4E6v.mjs → index-11qAtV9d.mjs} +2 -2
  20. package/.output/server/_ssr/index.mjs +2 -2
  21. package/.output/server/_ssr/{router-DLLY6gv_.mjs → router-C4OdRnqX.mjs} +138 -138
  22. package/.output/server/{_tanstack-start-manifest_v-CHmIZaVV.mjs → _tanstack-start-manifest_v-F6bwcl33.mjs} +1 -1
  23. package/.output/server/index.mjs +60 -60
  24. package/README.md +1 -1
  25. package/package.json +1 -1
  26. package/src/components/ProxyViewer.tsx +43 -9
  27. package/src/components/ProxyViewerContainer.tsx +1 -1
  28. package/src/components/providers/ProviderForm.tsx +2 -2
  29. package/src/components/proxy-viewer/AgentTraceSummary.tsx +1 -1
  30. package/src/components/proxy-viewer/CompareDrawer.tsx +1 -1
  31. package/src/components/proxy-viewer/ConversationGroup.tsx +1 -1
  32. package/src/components/proxy-viewer/ConversationGroupList.tsx +1 -1
  33. package/src/components/proxy-viewer/ConversationHeader.tsx +11 -7
  34. package/src/components/proxy-viewer/LogEntry.tsx +1 -1
  35. package/src/components/proxy-viewer/LogEntryHeader.tsx +1 -1
  36. package/src/components/proxy-viewer/ReplayDialog.tsx +1 -1
  37. package/src/components/proxy-viewer/ResponseView.tsx +2 -2
  38. package/src/components/proxy-viewer/StreamingChunkSequence.tsx +1 -1
  39. package/src/components/proxy-viewer/TurnGroup.tsx +1 -1
  40. package/src/components/proxy-viewer/anatomy/sessionContextSummary.ts +1 -1
  41. package/src/components/proxy-viewer/formats/anthropic/ContentBlocks.tsx +1 -1
  42. package/src/components/proxy-viewer/formats/anthropic/ResponseView.tsx +2 -2
  43. package/src/components/proxy-viewer/formats/index.tsx +5 -3
  44. package/src/components/proxy-viewer/formats/openai/ResponseView.tsx +1 -1
  45. package/src/components/proxy-viewer/log-formats/anthropic.ts +1 -4
  46. package/src/components/proxy-viewer/log-formats/index.ts +6 -6
  47. package/src/components/proxy-viewer/log-formats/openai.ts +1 -1
  48. package/src/components/proxy-viewer/log-formats/types.ts +2 -2
  49. package/src/components/proxy-viewer/viewerState.ts +1 -1
  50. package/src/contracts/anthropic.ts +235 -0
  51. package/src/contracts/index.ts +27 -0
  52. package/src/contracts/json.ts +32 -0
  53. package/src/contracts/log.ts +72 -0
  54. package/src/contracts/openai.ts +176 -0
  55. package/src/knowledge/distiller.ts +1 -1
  56. package/src/lib/export-logs.ts +1 -1
  57. package/src/lib/groupContract.ts +1 -1
  58. package/src/lib/objectUtils.ts +3 -3
  59. package/src/lib/providerTestContract.ts +1 -1
  60. package/src/lib/runContract.ts +1 -1
  61. package/src/lib/stopReason.ts +1 -1
  62. package/src/mcp/previewExtractor.ts +4 -7
  63. package/src/mcp/server.ts +1 -1
  64. package/src/mcp/toolHandlers.ts +1 -1
  65. package/src/proxy/formats/anthropic/anthropicProvider.ts +2 -2
  66. package/src/proxy/formats/anthropic/schemas.ts +12 -235
  67. package/src/proxy/formats/handler.ts +2 -2
  68. package/src/proxy/formats/index.ts +1 -1
  69. package/src/proxy/formats/jsonSchema.ts +2 -36
  70. package/src/proxy/formats/openai/alibabaProvider.ts +2 -2
  71. package/src/proxy/formats/openai/provider.ts +2 -2
  72. package/src/proxy/formats/openai/schemas.ts +14 -187
  73. package/src/proxy/formats/openai/zhipuProvider.ts +2 -2
  74. package/src/proxy/formats/{protocol.ts → providerAdapter.ts} +5 -5
  75. package/src/proxy/formats/providerRegistry.ts +7 -7
  76. package/src/proxy/formats/providers/index.ts +1 -1
  77. package/src/proxy/formats/registry.ts +20 -11
  78. package/src/proxy/handler.ts +1 -1
  79. package/src/proxy/openaiOrphanToolStrip.ts +1 -1
  80. package/src/proxy/providers.ts +1 -1
  81. package/src/proxy/schemas.ts +18 -80
  82. package/src/proxy/store.ts +14 -11
  83. package/src/proxy/upstream.ts +1 -1
  84. package/src/routes/api/logs.stream.ts +1 -1
  85. package/.output/public/assets/_sessionId-DurHDwM1.js +0 -1
  86. package/.output/public/assets/index-sGphugFR.js +0 -1
@@ -75,32 +75,32 @@ const createLucideIcon = (iconName, iconNode) => {
75
75
  Component.displayName = toPascalCase(iconName);
76
76
  return Component;
77
77
  };
78
- const __iconNode$16 = [
78
+ const __iconNode$17 = [
79
79
  ["path", { d: "m7 7 10 10", key: "1fmybs" }],
80
80
  ["path", { d: "M17 7v10H7", key: "6fjiku" }]
81
81
  ];
82
- const ArrowDownRight = createLucideIcon("arrow-down-right", __iconNode$16);
83
- const __iconNode$15 = [
82
+ const ArrowDownRight = createLucideIcon("arrow-down-right", __iconNode$17);
83
+ const __iconNode$16 = [
84
84
  ["path", { d: "M12 5v14", key: "s699le" }],
85
85
  ["path", { d: "m19 12-7 7-7-7", key: "1idqje" }]
86
86
  ];
87
- const ArrowDown = createLucideIcon("arrow-down", __iconNode$15);
88
- const __iconNode$14 = [
87
+ const ArrowDown = createLucideIcon("arrow-down", __iconNode$16);
88
+ const __iconNode$15 = [
89
89
  ["path", { d: "m12 19-7-7 7-7", key: "1l729n" }],
90
90
  ["path", { d: "M19 12H5", key: "x3x0zl" }]
91
91
  ];
92
- const ArrowLeft = createLucideIcon("arrow-left", __iconNode$14);
93
- const __iconNode$13 = [
92
+ const ArrowLeft = createLucideIcon("arrow-left", __iconNode$15);
93
+ const __iconNode$14 = [
94
94
  ["path", { d: "M7 7h10v10", key: "1tivn9" }],
95
95
  ["path", { d: "M7 17 17 7", key: "1vkiza" }]
96
96
  ];
97
- const ArrowUpRight = createLucideIcon("arrow-up-right", __iconNode$13);
98
- const __iconNode$12 = [
97
+ const ArrowUpRight = createLucideIcon("arrow-up-right", __iconNode$14);
98
+ const __iconNode$13 = [
99
99
  ["path", { d: "m5 12 7-7 7 7", key: "hav0vg" }],
100
100
  ["path", { d: "M12 19V5", key: "x0mq9r" }]
101
101
  ];
102
- const ArrowUp = createLucideIcon("arrow-up", __iconNode$12);
103
- const __iconNode$11 = [
102
+ const ArrowUp = createLucideIcon("arrow-up", __iconNode$13);
103
+ const __iconNode$12 = [
104
104
  [
105
105
  "path",
106
106
  {
@@ -110,8 +110,8 @@ const __iconNode$11 = [
110
110
  ],
111
111
  ["rect", { x: "14", y: "2", width: "8", height: "8", rx: "1", key: "88lufb" }]
112
112
  ];
113
- const Blocks = createLucideIcon("blocks", __iconNode$11);
114
- const __iconNode$10 = [
113
+ const Blocks = createLucideIcon("blocks", __iconNode$12);
114
+ const __iconNode$11 = [
115
115
  [
116
116
  "path",
117
117
  { d: "M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1", key: "ezmyqa" }
@@ -124,8 +124,8 @@ const __iconNode$10 = [
124
124
  }
125
125
  ]
126
126
  ];
127
- const Braces = createLucideIcon("braces", __iconNode$10);
128
- const __iconNode$$ = [
127
+ const Braces = createLucideIcon("braces", __iconNode$11);
128
+ const __iconNode$10 = [
129
129
  ["path", { d: "M12 18V5", key: "adv99a" }],
130
130
  ["path", { d: "M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4", key: "1e3is1" }],
131
131
  ["path", { d: "M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5", key: "1gqd8o" }],
@@ -135,109 +135,109 @@ const __iconNode$$ = [
135
135
  ["path", { d: "M6 18a4 4 0 0 1-2-7.464", key: "k1g0md" }],
136
136
  ["path", { d: "M6.003 5.125a4 4 0 0 0-2.526 5.77", key: "q97ue3" }]
137
137
  ];
138
- const Brain = createLucideIcon("brain", __iconNode$$);
139
- const __iconNode$_ = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]];
140
- const Check = createLucideIcon("check", __iconNode$_);
141
- const __iconNode$Z = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]];
142
- const ChevronDown = createLucideIcon("chevron-down", __iconNode$Z);
143
- const __iconNode$Y = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]];
144
- const ChevronRight = createLucideIcon("chevron-right", __iconNode$Y);
145
- const __iconNode$X = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]];
146
- const ChevronUp = createLucideIcon("chevron-up", __iconNode$X);
147
- const __iconNode$W = [
138
+ const Brain = createLucideIcon("brain", __iconNode$10);
139
+ const __iconNode$$ = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]];
140
+ const Check = createLucideIcon("check", __iconNode$$);
141
+ const __iconNode$_ = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]];
142
+ const ChevronDown = createLucideIcon("chevron-down", __iconNode$_);
143
+ const __iconNode$Z = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]];
144
+ const ChevronRight = createLucideIcon("chevron-right", __iconNode$Z);
145
+ const __iconNode$Y = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]];
146
+ const ChevronUp = createLucideIcon("chevron-up", __iconNode$Y);
147
+ const __iconNode$X = [
148
148
  ["path", { d: "m7 6 5 5 5-5", key: "1lc07p" }],
149
149
  ["path", { d: "m7 13 5 5 5-5", key: "1d48rs" }]
150
150
  ];
151
- const ChevronsDown = createLucideIcon("chevrons-down", __iconNode$W);
152
- const __iconNode$V = [
151
+ const ChevronsDown = createLucideIcon("chevrons-down", __iconNode$X);
152
+ const __iconNode$W = [
153
153
  ["path", { d: "m17 11-5-5-5 5", key: "e8nh98" }],
154
154
  ["path", { d: "m17 18-5-5-5 5", key: "2avn1x" }]
155
155
  ];
156
- const ChevronsUp = createLucideIcon("chevrons-up", __iconNode$V);
157
- const __iconNode$U = [
156
+ const ChevronsUp = createLucideIcon("chevrons-up", __iconNode$W);
157
+ const __iconNode$V = [
158
158
  ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
159
159
  ["line", { x1: "12", x2: "12", y1: "8", y2: "12", key: "1pkeuh" }],
160
160
  ["line", { x1: "12", x2: "12.01", y1: "16", y2: "16", key: "4dfq90" }]
161
161
  ];
162
- const CircleAlert = createLucideIcon("circle-alert", __iconNode$U);
163
- const __iconNode$T = [
162
+ const CircleAlert = createLucideIcon("circle-alert", __iconNode$V);
163
+ const __iconNode$U = [
164
164
  ["path", { d: "M21.801 10A10 10 0 1 1 17 3.335", key: "yps3ct" }],
165
165
  ["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
166
166
  ];
167
- const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$T);
168
- const __iconNode$S = [
167
+ const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$U);
168
+ const __iconNode$T = [
169
169
  ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
170
170
  ["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
171
171
  ];
172
- const CircleCheck = createLucideIcon("circle-check", __iconNode$S);
173
- const __iconNode$R = [
172
+ const CircleCheck = createLucideIcon("circle-check", __iconNode$T);
173
+ const __iconNode$S = [
174
174
  ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
175
175
  ["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3", key: "1u773s" }],
176
176
  ["path", { d: "M12 17h.01", key: "p32p05" }]
177
177
  ];
178
- const CircleQuestionMark = createLucideIcon("circle-question-mark", __iconNode$R);
179
- const __iconNode$Q = [
178
+ const CircleQuestionMark = createLucideIcon("circle-question-mark", __iconNode$S);
179
+ const __iconNode$R = [
180
180
  ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
181
181
  ["rect", { x: "9", y: "9", width: "6", height: "6", rx: "1", key: "1ssd4o" }]
182
182
  ];
183
- const CircleStop = createLucideIcon("circle-stop", __iconNode$Q);
184
- const __iconNode$P = [
183
+ const CircleStop = createLucideIcon("circle-stop", __iconNode$R);
184
+ const __iconNode$Q = [
185
185
  ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
186
186
  ["path", { d: "m15 9-6 6", key: "1uzhvr" }],
187
187
  ["path", { d: "m9 9 6 6", key: "z0biqf" }]
188
188
  ];
189
- const CircleX = createLucideIcon("circle-x", __iconNode$P);
190
- const __iconNode$O = [
189
+ const CircleX = createLucideIcon("circle-x", __iconNode$Q);
190
+ const __iconNode$P = [
191
191
  ["path", { d: "M12 6v6l4 2", key: "mmk7yg" }],
192
192
  ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
193
193
  ];
194
- const Clock = createLucideIcon("clock", __iconNode$O);
195
- const __iconNode$N = [
194
+ const Clock = createLucideIcon("clock", __iconNode$P);
195
+ const __iconNode$O = [
196
196
  ["path", { d: "M12 13v8", key: "1l5pq0" }],
197
197
  ["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242", key: "1pljnt" }],
198
198
  ["path", { d: "m8 17 4-4 4 4", key: "1quai1" }]
199
199
  ];
200
- const CloudUpload = createLucideIcon("cloud-upload", __iconNode$N);
201
- const __iconNode$M = [
200
+ const CloudUpload = createLucideIcon("cloud-upload", __iconNode$O);
201
+ const __iconNode$N = [
202
202
  ["path", { d: "m18 16 4-4-4-4", key: "1inbqp" }],
203
203
  ["path", { d: "m6 8-4 4 4 4", key: "15zrgr" }],
204
204
  ["path", { d: "m14.5 4-5 16", key: "e7oirm" }]
205
205
  ];
206
- const CodeXml = createLucideIcon("code-xml", __iconNode$M);
207
- const __iconNode$L = [
206
+ const CodeXml = createLucideIcon("code-xml", __iconNode$N);
207
+ const __iconNode$M = [
208
208
  ["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
209
209
  ["path", { d: "M12 3v18", key: "108xh3" }]
210
210
  ];
211
- const Columns2 = createLucideIcon("columns-2", __iconNode$L);
212
- const __iconNode$K = [
211
+ const Columns2 = createLucideIcon("columns-2", __iconNode$M);
212
+ const __iconNode$L = [
213
213
  ["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
214
214
  ["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
215
215
  ];
216
- const Copy = createLucideIcon("copy", __iconNode$K);
217
- const __iconNode$J = [
216
+ const Copy = createLucideIcon("copy", __iconNode$L);
217
+ const __iconNode$K = [
218
218
  ["path", { d: "M12 15V3", key: "m9g1x1" }],
219
219
  ["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4", key: "ih7n3h" }],
220
220
  ["path", { d: "m7 10 5 5 5-5", key: "brsn70" }]
221
221
  ];
222
- const Download = createLucideIcon("download", __iconNode$J);
223
- const __iconNode$I = [
222
+ const Download = createLucideIcon("download", __iconNode$K);
223
+ const __iconNode$J = [
224
224
  ["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
225
225
  ["circle", { cx: "19", cy: "12", r: "1", key: "1wjl8i" }],
226
226
  ["circle", { cx: "5", cy: "12", r: "1", key: "1pcz8c" }]
227
227
  ];
228
- const Ellipsis = createLucideIcon("ellipsis", __iconNode$I);
229
- const __iconNode$H = [
228
+ const Ellipsis = createLucideIcon("ellipsis", __iconNode$J);
229
+ const __iconNode$I = [
230
230
  ["line", { x1: "5", x2: "19", y1: "9", y2: "9", key: "1nwqeh" }],
231
231
  ["line", { x1: "5", x2: "19", y1: "15", y2: "15", key: "g8yjpy" }]
232
232
  ];
233
- const Equal = createLucideIcon("equal", __iconNode$H);
234
- const __iconNode$G = [
233
+ const Equal = createLucideIcon("equal", __iconNode$I);
234
+ const __iconNode$H = [
235
235
  ["path", { d: "M15 3h6v6", key: "1q9fwt" }],
236
236
  ["path", { d: "M10 14 21 3", key: "gplh6r" }],
237
237
  ["path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6", key: "a6xqqp" }]
238
238
  ];
239
- const ExternalLink = createLucideIcon("external-link", __iconNode$G);
240
- const __iconNode$F = [
239
+ const ExternalLink = createLucideIcon("external-link", __iconNode$H);
240
+ const __iconNode$G = [
241
241
  [
242
242
  "path",
243
243
  {
@@ -255,8 +255,8 @@ const __iconNode$F = [
255
255
  ],
256
256
  ["path", { d: "m2 2 20 20", key: "1ooewy" }]
257
257
  ];
258
- const EyeOff = createLucideIcon("eye-off", __iconNode$F);
259
- const __iconNode$E = [
258
+ const EyeOff = createLucideIcon("eye-off", __iconNode$G);
259
+ const __iconNode$F = [
260
260
  [
261
261
  "path",
262
262
  {
@@ -266,7 +266,26 @@ const __iconNode$E = [
266
266
  ],
267
267
  ["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
268
268
  ];
269
- const Eye = createLucideIcon("eye", __iconNode$E);
269
+ const Eye = createLucideIcon("eye", __iconNode$F);
270
+ const __iconNode$E = [
271
+ [
272
+ "path",
273
+ {
274
+ d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
275
+ key: "1oefj6"
276
+ }
277
+ ],
278
+ ["path", { d: "M14 2v5a1 1 0 0 0 1 1h5", key: "wfsgrz" }],
279
+ [
280
+ "path",
281
+ { d: "M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1", key: "1oajmo" }
282
+ ],
283
+ [
284
+ "path",
285
+ { d: "M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1", key: "mpwhp6" }
286
+ ]
287
+ ];
288
+ const FileBraces = createLucideIcon("file-braces", __iconNode$E);
270
289
  const __iconNode$D = [
271
290
  [
272
291
  "path",
@@ -607,52 +626,53 @@ const __iconNode = [
607
626
  ];
608
627
  const Zap = createLucideIcon("zap", __iconNode);
609
628
  export {
610
- Server as $,
629
+ CircleQuestionMark as $,
611
630
  ArrowLeft as A,
612
631
  Brain as B,
613
632
  Check as C,
614
633
  Download as D,
615
634
  EyeOff as E,
616
- FileSearch as F,
635
+ FileBraces as F,
617
636
  Gauge as G,
618
- FileTerminal as H,
619
- ChevronsUp as I,
620
- ChevronsDown as J,
621
- FileDiff as K,
637
+ Globe as H,
638
+ FileTerminal as I,
639
+ ChevronsUp as J,
640
+ ChevronsDown as K,
622
641
  Layers as L,
623
642
  MessageSquare as M,
624
- History as N,
643
+ FileDiff as N,
625
644
  OctagonAlert as O,
626
645
  Plus as P,
627
- RotateCcw as Q,
646
+ History as Q,
628
647
  RefreshCw as R,
629
648
  Settings as S,
630
649
  Trash2 as T,
631
650
  Upload as U,
632
- Search as V,
651
+ RotateCcw as V,
633
652
  Wrench as W,
634
653
  X,
635
- GitCompareArrows as Y,
654
+ Search as Y,
636
655
  Zap as Z,
637
- CircleQuestionMark as _,
656
+ GitCompareArrows as _,
638
657
  LoaderCircle as a,
639
- Lock as a0,
640
- Wifi as a1,
641
- WifiOff as a2,
642
- ArrowUp as a3,
643
- ArrowDown as a4,
644
- Ellipsis as a5,
645
- CodeXml as a6,
646
- Blocks as a7,
647
- MousePointerClick as a8,
648
- FileText as a9,
649
- Rows3 as aa,
650
- Columns2 as ab,
651
- Equal as ac,
652
- Braces as ad,
653
- Minimize2 as ae,
654
- Info as af,
655
- CircleStop as ag,
658
+ Server as a0,
659
+ Lock as a1,
660
+ Wifi as a2,
661
+ WifiOff as a3,
662
+ ArrowUp as a4,
663
+ ArrowDown as a5,
664
+ Ellipsis as a6,
665
+ CodeXml as a7,
666
+ Blocks as a8,
667
+ MousePointerClick as a9,
668
+ FileText as aa,
669
+ Rows3 as ab,
670
+ Columns2 as ac,
671
+ Equal as ad,
672
+ Braces as ae,
673
+ Minimize2 as af,
674
+ Info as ag,
675
+ CircleStop as ah,
656
676
  Copy as b,
657
677
  ChevronDown as c,
658
678
  Scan as d,
@@ -674,8 +694,8 @@ export {
674
694
  CircleX as t,
675
695
  ShieldCheck as u,
676
696
  Save as v,
677
- CircleCheck as w,
678
- CloudUpload as x,
679
- Radio as y,
680
- Globe as z
697
+ FileSearch as w,
698
+ CircleCheck as x,
699
+ CloudUpload as y,
700
+ Radio as z
681
701
  };
@@ -1,6 +1,6 @@
1
1
  import { j as jsxRuntimeExports } from "./_libs/react.mjs";
2
- import { P as ProxyViewerContainer } from "./_ssr/ProxyViewerContainer-7igCY291.mjs";
3
- import { R as Route$x } from "./_ssr/router-DLLY6gv_.mjs";
2
+ import { P as ProxyViewerContainer } from "./_ssr/ProxyViewerContainer-CpdWs7Pk.mjs";
3
+ import { R as Route$x } from "./_ssr/router-C4OdRnqX.mjs";
4
4
  import "./_libs/jszip.mjs";
5
5
  import "./_libs/modelcontextprotocol__server.mjs";
6
6
  import "./_libs/swr.mjs";
@@ -1,9 +1,9 @@
1
1
  import { r as reactExports, j as jsxRuntimeExports } from "../_libs/react.mjs";
2
- import { g as getLogFormatAdapter, r as resolveLogFormat, a as getConversationId, c as cn, B as Badge, f as formatTokens, J as JsonViewerFromString } from "./ProxyViewerContainer-7igCY291.mjs";
3
- import "./router-DLLY6gv_.mjs";
2
+ import { g as getLogFormatAdapter, r as resolveLogFormat, a as getConversationId, c as cn, B as Badge, f as formatTokens, J as JsonViewerFromString } from "./ProxyViewerContainer-CpdWs7Pk.mjs";
3
+ import "./router-C4OdRnqX.mjs";
4
4
  import "../_libs/modelcontextprotocol__server.mjs";
5
5
  import "../_libs/jszip.mjs";
6
- import { X, aa as Rows3, ab as Columns2, r as Minus, P as Plus, m as Pencil, l as ChevronRight, ac as Equal, C as Check, b as Copy } from "../_libs/lucide-react.mjs";
6
+ import { X, ab as Rows3, ac as Columns2, r as Minus, P as Plus, m as Pencil, l as ChevronRight, ad as Equal, C as Check, b as Copy } from "../_libs/lucide-react.mjs";
7
7
  import "../_libs/swr.mjs";
8
8
  import "../_libs/use-sync-external-store.mjs";
9
9
  import "../_libs/dequal.mjs";