Module presets
Expand description
Quickstart preset tables and submission shape.
Re-exports§
pub use crate::multi_agent::MemoryBackendKind as MemoryChoice;
Structs§
- Agent
Identity - Agent identity payload from the Agent step. Personality file
authoring is handled by the existing
PersonalityEditorwidget; Quickstart passes only the chosenpersonality_filepath here. - Builder
Submission - Complete builder submission consumed by the shared Quickstart apply path.
- Channel
Quick Start - One channel selection submitted by the Quickstart builder.
- Model
Provider Choice - Model provider selection submitted by the Quickstart builder.
- Quickstart
Peer Group - Peer-group entry staged in the Quickstart. Maps 1:1 to a
[peer_groups.<name>]table written at apply time. Thechannelfield carries a<type>.<alias>ref pointing at either a staged channel from the same submission or a pre-existing one. - Quickstart
Personality File - One personality file staged for write during Quickstart apply.
The runtime writes
<workspace>/<filename>withcontent, overwriting if the path already exists. - Risk
Preset - One row in the Risk preset table. The Quickstart UI renders the
label, the runtime writesvaluestorisk-profiles.<preset_name>on apply. - Runtime
Preset - One row in the Runtime preset table. Same shape and contract as
RiskPreset— see its docs for the per-field semantics.
Enums§
- Selector
Choice - Selects either an existing configured value or a fresh builder value.
Constants§
- DEFAULT_
RUNTIME_ PRESET_ NAME - Canonical fallback used when no provider-specific runtime recommendation exists.
- LOCAL_
SMALL_ RUNTIME_ PRESET_ NAME - Canonical compact runtime recommended by local inference backends.
- RISK_
PRESETS - Canonical Risk preset table. Order is the order the picker renders. Add or remove a preset by editing one row here; every consumer reads from the slice so nothing else has to change.
- RUNTIME_
PRESETS - Canonical Runtime preset table. See
RISK_PRESETSfor the ordering / consumer contract.
Functions§
- recommended_
runtime_ preset - Resolve an optional provider recommendation against the canonical preset table.
Unknown or absent recommendations fall back to
unbounded, then to the first available preset so consumers never duplicate fallback policy. - risk_
preset - Look up a Risk preset by its
preset_name. ReturnsNonefor unknown keys. - runtime_
preset - Look up a Runtime preset by its
preset_name. ReturnsNonefor unknown keys.