@dahawa/hawa-code 2.0.0 → 2.0.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/cli.js +764 -758
- package/hands.js +690 -686
- package/hawa.js +3 -3
- package/package.json +1 -1
- package/webServer/app.js +27 -27
- package/webServer/style.css +12 -0
package/webServer/style.css
CHANGED
|
@@ -228,6 +228,18 @@ html, body {
|
|
|
228
228
|
font-weight: 600;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
+
.message-tool-use .tool-status-loading {
|
|
232
|
+
display: inline-block;
|
|
233
|
+
width: 10px;
|
|
234
|
+
height: 10px;
|
|
235
|
+
border: 2px solid var(--accent-green);
|
|
236
|
+
border-top-color: transparent;
|
|
237
|
+
border-radius: 50%;
|
|
238
|
+
animation: spin 1s linear infinite;
|
|
239
|
+
margin-right: 6px;
|
|
240
|
+
vertical-align: middle;
|
|
241
|
+
}
|
|
242
|
+
|
|
231
243
|
.message-tool-use .tool-input {
|
|
232
244
|
font-size: 11px;
|
|
233
245
|
color: var(--text-dimmed);
|