Skip to content

Commit edc393d

Browse files
committed
Fix merge issues
1 parent 242a2e8 commit edc393d

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

docs/protocol/draft/schema.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2519,7 +2519,12 @@ Authentication-related capabilities supported by the agent.
25192519

25202520
</ResponseField>
25212521
<ResponseField name="nes" type={<><span><a href="#nescapabilities">NesCapabilities</a></span><span> | null</span></>} >
2522-
NES (Next Edit Suggestions) capabilities supported by the agent.
2522+
**UNSTABLE**
2523+
2524+
This capability is not part of the spec yet, and may be removed or changed at any point.
2525+
2526+
NES (Next Edit Suggestions) capabilities supported by the agent.
2527+
25232528
</ResponseField>
25242529
<ResponseField name="positionEncoding" type={<><span><a href="#positionencodingkind">PositionEncodingKind</a></span><span> | null</span></>} >
25252530
**UNSTABLE**

schema/schema.unstable.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"type": "null"
9292
}
9393
],
94-
"description": "NES (Next Edit Suggestions) capabilities supported by the agent."
94+
"description": "**UNSTABLE**\n\nThis capability is not part of the spec yet, and may be removed or changed at any point.\n\nNES (Next Edit Suggestions) capabilities supported by the agent."
9595
},
9696
"positionEncoding": {
9797
"anyOf": [

src/agent.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3828,6 +3828,10 @@ pub struct AgentCapabilities {
38283828
#[cfg(feature = "unstable_llm_providers")]
38293829
#[serde(skip_serializing_if = "Option::is_none")]
38303830
pub providers: Option<ProvidersCapabilities>,
3831+
/// **UNSTABLE**
3832+
///
3833+
/// This capability is not part of the spec yet, and may be removed or changed at any point.
3834+
///
38313835
/// NES (Next Edit Suggestions) capabilities supported by the agent.
38323836
#[cfg(feature = "unstable_nes")]
38333837
#[serde(skip_serializing_if = "Option::is_none")]
@@ -3907,6 +3911,10 @@ impl AgentCapabilities {
39073911
self
39083912
}
39093913

3914+
/// **UNSTABLE**
3915+
///
3916+
/// This capability is not part of the spec yet, and may be removed or changed at any point.
3917+
///
39103918
/// NES (Next Edit Suggestions) capabilities supported by the agent.
39113919
#[cfg(feature = "unstable_nes")]
39123920
#[must_use]

0 commit comments

Comments
 (0)