agentgui 1.0.623 → 1.0.624
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/docs/index.html +0 -46
- package/package.json +1 -1
package/docs/index.html
CHANGED
|
@@ -175,52 +175,6 @@
|
|
|
175
175
|
</div>
|
|
176
176
|
</section>
|
|
177
177
|
|
|
178
|
-
<!-- Architecture -->
|
|
179
|
-
<section class="py-16 px-4 bg-base-2">
|
|
180
|
-
<div class="max-w-5xl mx-auto">
|
|
181
|
-
<h2 class="text-3xl font-bold text-center mb-2">Architecture</h2>
|
|
182
|
-
<p class="text-content3 text-center mb-10">Built for performance, reliability, and extensibility</p>
|
|
183
|
-
<div class="arch-diagram">
|
|
184
|
-
<pre>┌─────────────────────────────────────────────────────┐
|
|
185
|
-
│ Browser Client │
|
|
186
|
-
│ ┌─────────────┐ ┌──────────────┐ ┌───────────────┐ │
|
|
187
|
-
│ │ UI Layer │ │ WebSocket │ │ Streaming │ │
|
|
188
|
-
│ │ Components │ │ Manager │ │ Renderer │ │
|
|
189
|
-
│ └─────────────┘ └──────────────┘ └───────────────┘ │
|
|
190
|
-
└─────────────────────────┬───────────────────────────┘
|
|
191
|
-
│ HTTP + WebSocket
|
|
192
|
-
┌────────▼────────┐
|
|
193
|
-
│ server.js │
|
|
194
|
-
│ HTTP + WS API │
|
|
195
|
-
└────────┬────────┘
|
|
196
|
-
┌─────────────────┼─────────────────┐
|
|
197
|
-
┌───────▼──────┐ ┌────────▼────────┐ ┌──────▼──────┐
|
|
198
|
-
│ SQLite DB │ │ Agent Runner │ │ Speech │
|
|
199
|
-
│ (WAL mode) │ │ (claude-runner) │ │ (Whisper) │
|
|
200
|
-
└──────────────┘ └────────┬────────┘ └─────────────┘
|
|
201
|
-
│
|
|
202
|
-
┌────────▼────────┐
|
|
203
|
-
│ CLI Processes │
|
|
204
|
-
│ claude / gemini │
|
|
205
|
-
└─────────────────┘</pre>
|
|
206
|
-
</div>
|
|
207
|
-
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mt-8">
|
|
208
|
-
<div class="card p-6">
|
|
209
|
-
<h3 class="font-bold text-lg mb-2">REST API</h3>
|
|
210
|
-
<p class="text-content3">Complete REST API for conversations, messages, agents, tools, and speech operations.</p>
|
|
211
|
-
</div>
|
|
212
|
-
<div class="card p-6">
|
|
213
|
-
<h3 class="font-bold text-lg mb-2">WebSocket Sync</h3>
|
|
214
|
-
<p class="text-content3">Real-time bidirectional communication with event-based streaming and subscription model.</p>
|
|
215
|
-
</div>
|
|
216
|
-
<div class="card p-6">
|
|
217
|
-
<h3 class="font-bold text-lg mb-2">SQLite WAL Mode</h3>
|
|
218
|
-
<p class="text-content3">Write-Ahead Logging for concurrent reads and writes without blocking.</p>
|
|
219
|
-
</div>
|
|
220
|
-
</div>
|
|
221
|
-
</div>
|
|
222
|
-
</section>
|
|
223
|
-
|
|
224
178
|
<!-- Installation -->
|
|
225
179
|
<section class="py-16 px-4">
|
|
226
180
|
<div class="max-w-2xl mx-auto">
|