mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-20 23:21:06 +02:00
feat(schemas): add stage field to LlmSetupStatusRead
This commit is contained in:
parent
007629443b
commit
88d3d336bf
1 changed files with 3 additions and 1 deletions
|
|
@ -153,9 +153,11 @@ class LlmSetupStatusRead(BaseModel):
|
|||
|
||||
``status`` is the only thing the frontend gate acts on; ``source`` is
|
||||
informational and ``can_configure`` selects the onboarding vs. blocked
|
||||
screen for members who cannot manage models.
|
||||
screen for members who cannot manage models. ``stage`` refines a
|
||||
``needs_setup`` verdict into first-run (``initial_setup``) vs. recovery.
|
||||
"""
|
||||
|
||||
status: Literal["ready", "needs_setup"]
|
||||
source: Literal["global_config", "models", "none"]
|
||||
can_configure: bool
|
||||
stage: Literal["initial_setup", "recovery", "ready"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue