Files
windmill/backend
Guilhem LemouelandClaude Opus 5 013ac39e2a feat(ai-chat): list test chats by default in the editor, and hold chat mode's own inputs
The conversations list took a boolean `include_test`; it now takes `kind` —
test, deployed or all — defaulting to deployed, and the flow editor asks for
its own test chats. The sidebar's filter is a three-way toggle behind an
icon-only button.

Chat mode's two contracts are visible and held rather than hidden: the flow's
`user_message` input shows in the Inputs tab through a new `lockedArgs`, which
renders a field without a rename or delete affordance and with its type fixed,
and an AI agent's memory selector is disabled while chat mode is on, with the
reason above it — chat mode keys the history on the conversation, so an agent
left on `off` would forget every turn. Enabling chat mode now moves an existing
agent off `off`, and a step already sitting there keeps its selector so it can
be moved back.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01QN7VboDEm9HAB1t4sMxMdE
2026-09-08 12:57:34 +02:00
..

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