mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-21 08:02:38 +00:00
Chats get a title from their first message and can be renamed in place; Rename and Delete moved into an ellipsis menu on the row, matching the sessions sidebar. The transcript sits in a rounded panel on both the deployed flow page and the test drawer. Two pieces come out of FlowChatManager. turnTranscript.ts holds the rules for turning stream events into transcript rows, with unit tests — it owned two ordering bugs (thinking arriving in the same chunk as the tool call it led to, and a row settling before its last chunk). jobBackedStore.svelte.ts holds the three rules the tool-call and message-input stores both need: ask once, answer empty until it lands, cache the empty answer for a purged job. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QN7VboDEm9HAB1t4sMxMdE
Windmill Backend
This folder holds all backend components, the src/ folder only contains files used to build the "root" binary.
Components
| name | description |
|---|---|
| windmill-api | The API server, exposing functionality to other components and the frontend |
| windmill-audit | Contains audit functionality, allowing different components to record important actions |
| windmill-common | Common code shared by all crates |
| windmill-queue | Contains job & flow queuing functionality, commonly written to by the API server and read from by workers |
| windmill-worker | The worker. Used to process and execute flows & jobs. |
| parsers | Contains code to parse signatures in different langauges. |
Compile sqlx for offline ci
cargo sqlx prepare --workspace -- --bin windmill --features enterprise