agentgui 1.0.115 → 1.0.117
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/package.json +1 -1
- package/static/app.js +59 -5
- package/static/index.html +711 -0
- package/static/js/client.js +32 -3
- package/static/js/streaming-renderer.js +263 -128
- package/static/styles.css +28 -11
package/static/styles.css
CHANGED
|
@@ -739,7 +739,6 @@ html, body {
|
|
|
739
739
|
align-items: center;
|
|
740
740
|
justify-content: center;
|
|
741
741
|
background: var(--bg-secondary);
|
|
742
|
-
border: 1px solid var(--border-color);
|
|
743
742
|
border-radius: 0.25rem;
|
|
744
743
|
font-family: monospace;
|
|
745
744
|
font-size: 0.75rem;
|
|
@@ -787,7 +786,6 @@ html, body {
|
|
|
787
786
|
max-height: 300px;
|
|
788
787
|
overflow-y: auto;
|
|
789
788
|
background: var(--bg-secondary);
|
|
790
|
-
border-top: 1px solid var(--border-color);
|
|
791
789
|
}
|
|
792
790
|
|
|
793
791
|
.tool-block.collapsed .tool-body {
|
|
@@ -812,7 +810,6 @@ html, body {
|
|
|
812
810
|
padding: 0.375rem 0.75rem;
|
|
813
811
|
font-size: 0.8rem;
|
|
814
812
|
color: var(--text-secondary);
|
|
815
|
-
border-top: 1px solid var(--border-color);
|
|
816
813
|
}
|
|
817
814
|
|
|
818
815
|
.html-block {
|
|
@@ -1792,12 +1789,13 @@ p code {
|
|
|
1792
1789
|
}
|
|
1793
1790
|
|
|
1794
1791
|
.tool-input {
|
|
1795
|
-
background:
|
|
1792
|
+
background: transparent;
|
|
1796
1793
|
border-radius: 0.375rem;
|
|
1797
|
-
padding: 0.5rem;
|
|
1794
|
+
padding: 0.5rem 0;
|
|
1798
1795
|
overflow-x: auto;
|
|
1799
1796
|
font-size: 0.8rem;
|
|
1800
1797
|
font-family: 'Courier New', monospace;
|
|
1798
|
+
line-height: 1.5;
|
|
1801
1799
|
}
|
|
1802
1800
|
|
|
1803
1801
|
.tool-input pre {
|
|
@@ -1805,6 +1803,17 @@ p code {
|
|
|
1805
1803
|
color: var(--text-secondary);
|
|
1806
1804
|
}
|
|
1807
1805
|
|
|
1806
|
+
.tool-input code {
|
|
1807
|
+
color: var(--text-secondary);
|
|
1808
|
+
background: transparent;
|
|
1809
|
+
padding: 0;
|
|
1810
|
+
font-family: inherit;
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
.tool-input span {
|
|
1814
|
+
font-family: 'Courier New', monospace;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1808
1817
|
.block-tool-result {
|
|
1809
1818
|
background: rgba(16, 185, 129, 0.05);
|
|
1810
1819
|
border: 1px solid rgba(16, 185, 129, 0.2);
|
|
@@ -1819,14 +1828,15 @@ p code {
|
|
|
1819
1828
|
}
|
|
1820
1829
|
|
|
1821
1830
|
.tool-result {
|
|
1822
|
-
background:
|
|
1831
|
+
background: transparent;
|
|
1823
1832
|
border-radius: 0.375rem;
|
|
1824
|
-
padding: 0.5rem;
|
|
1833
|
+
padding: 0.5rem 0;
|
|
1825
1834
|
overflow-x: auto;
|
|
1826
1835
|
font-size: 0.8rem;
|
|
1827
1836
|
font-family: 'Courier New', monospace;
|
|
1828
1837
|
max-height: 300px;
|
|
1829
1838
|
overflow-y: auto;
|
|
1839
|
+
line-height: 1.5;
|
|
1830
1840
|
}
|
|
1831
1841
|
|
|
1832
1842
|
.tool-result pre {
|
|
@@ -1834,6 +1844,13 @@ p code {
|
|
|
1834
1844
|
color: var(--text-secondary);
|
|
1835
1845
|
}
|
|
1836
1846
|
|
|
1847
|
+
.tool-result code {
|
|
1848
|
+
color: var(--text-secondary);
|
|
1849
|
+
background: transparent;
|
|
1850
|
+
padding: 0;
|
|
1851
|
+
font-family: inherit;
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1837
1854
|
.block-file-op {
|
|
1838
1855
|
background: rgba(245, 158, 11, 0.05);
|
|
1839
1856
|
border: 1px solid rgba(245, 158, 11, 0.2);
|
|
@@ -1853,15 +1870,15 @@ p code {
|
|
|
1853
1870
|
font-size: 0.875rem;
|
|
1854
1871
|
font-family: 'Courier New', monospace;
|
|
1855
1872
|
margin-bottom: 0.5rem;
|
|
1856
|
-
padding: 0.25rem 0
|
|
1857
|
-
background:
|
|
1873
|
+
padding: 0.25rem 0;
|
|
1874
|
+
background: transparent;
|
|
1858
1875
|
border-radius: 0.25rem;
|
|
1859
1876
|
}
|
|
1860
1877
|
|
|
1861
1878
|
.file-content {
|
|
1862
|
-
background:
|
|
1879
|
+
background: transparent;
|
|
1863
1880
|
border-radius: 0.375rem;
|
|
1864
|
-
padding: 0.5rem;
|
|
1881
|
+
padding: 0.5rem 0;
|
|
1865
1882
|
overflow-x: auto;
|
|
1866
1883
|
font-size: 0.8rem;
|
|
1867
1884
|
font-family: 'Courier New', monospace;
|