mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Buzz shared compute agents gave no indication of where their inference actually executes. Add a small indicator to the Activity panel header, e.g. 'Shared compute · Qwen3 8B · 3 nodes', with a full-sentence tooltip. - New read-only mesh_availability Tauri command exposing the existing member-verified, freshness-filtered MeshAvailability (serve targets + models) that discovery already computes for routing. Stubbed for non-mesh builds. - meshInferenceLocation.ts derives the label from availability + the agent's model ref: distinct node counting (deviceId/endpointId, so one node serving two models counts once) and Rust-parity @main-revision model matching. Explicit / auto-routed / no-live-nodes states. - useMeshInferenceLocation polls availability (60s vs the 45s relay heartbeat) only when the agent's provider is relay-mesh; returns null for non-mesh agents and while availability is unknown, so the header renders nothing rather than a guess. - E2E mock bridge answers mesh_availability with the matching shape.
Buzz
Desktop chat shell with:
- Tauri + React + TypeScript + Vite
- Tailwind CSS
- shadcn/ui-ready shared components
- Biome (lint/format/check)
- Feature-driven frontend structure
Scripts
pnpm dev- run the web frontendpnpm tauri dev- run the desktop apppnpm build- typecheck and build frontendpnpm typecheck- TypeScript checkspnpm lint- Biome lintpnpm format- Biome format (write)pnpm check- Biome check
Structure
src/shared- reusable app-wide code (ui,lib,styles)src/features- feature modules (vertical slices)src/app- top-level app composition