Skip to content

Commit 938e40b

Browse files
feat: Return vendor guidance with config registry recommendations
Stainless-Generated-From: fc242d1d87ecb547ccce40df21209f679a994ff1
1 parent b00a694 commit 938e40b

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)