Skip to content

Commit dfcc7ec

Browse files
feat: Reapply vendor guidance recommendations
Stainless-Generated-From: bac03320a3e21e2df40ca486c6fb34dd1054883a
1 parent e7850fd commit dfcc7ec

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

src/kernel/types/config_registry_response.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,11 @@ class ConfigRegistryResponse(BaseModel):
2121
"""A recommendation or a structured no-recommendation result."""
2222

2323
target: Target
24+
25+
guidance: Optional[str] = None
26+
"""Short advisory markdown to facilitate navigating this target.
27+
28+
Returned even when no configuration reached the target, since knowing what
29+
prevented success is useful without a configuration. Not verified against this
30+
target. Null when nothing applicable was observed or no notes exist.
31+
"""

src/kernel/types/lookup_response.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,11 @@ class LookupResponse(BaseModel):
1313
recommendation: Optional[Recommendation] = None
1414

1515
target: Target
16+
17+
guidance: Optional[str] = None
18+
"""Short advisory markdown to facilitate navigating this target.
19+
20+
Returned even when no configuration reached the target, since knowing what
21+
prevented success is useful without a configuration. Not verified against this
22+
target. Null when nothing applicable was observed or no notes exist.
23+
"""

0 commit comments

Comments
 (0)