Files
windmill/backend
Guilhem LemouelandClaude Opus 5 b40219652f feat(ai-chat): keep the thinking effort runnable, and let a test run name its conversation
- Picking a model that cannot think left the old `reasoning_effort` in the flow
  input and the run sent it anyway. The composer now writes the effort alongside
  the model — carried where the new model has that level, cleared where it does
  not — through `carriedReasoning`, the rule the session chat already applied
  inline and now shares.
- `reasoning_effort` no longer falls back to the Configure-inputs modal on a
  model that cannot reason. The popover always owns it once a model is chosen:
  the slider, or the row saying the model cannot think. On such a model the
  value is not a choice but a fact, so offering it in the modal only invited
  setting a level the provider rejects.
- `memory_id` names the conversation a chat turn belongs to and is a query
  parameter, so no caller could supply it through `args` — and the error said
  only that it was required. It now says where it goes, `test_run_flow` supplies
  one for a chat-enabled flow, and its new `conversation_id` lets a caller
  continue a conversation instead of always starting a fresh one, which is the
  only way to test that an agent's memory works.
- `flow-base.md` gains a Chat-Mode Flows section: wiring `provider` fields to
  flow inputs is what puts the model and thinking controls in the composer, and
  a fully static provider gives a chat that cannot change its model.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01QN7VboDEm9HAB1t4sMxMdE
2026-09-10 19:57:39 +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