@@ -1101,7 +1101,7 @@ pub struct SessionConfig {
11011101 /// Defaults to `Some(true)` via [`SessionConfig::default`].
11021102 #[ serde( skip_serializing_if = "Option::is_none" ) ]
11031103 pub request_elicitation : Option < bool > ,
1104- /// Renderer-side opt-in (V1.1) : when `true`, the runtime surfaces canvas
1104+ /// Renderer-side opt-in: when `true`, the runtime surfaces canvas
11051105 /// agent tools (`open_canvas`, `discover_canvases`, ...) to the model.
11061106 /// Default off — TUI / headless / SDK callers stay clean unless they can
11071107 /// actually display canvases. Independent of provider semantics, which
@@ -1206,7 +1206,7 @@ pub struct SessionConfig {
12061206 /// associated [`CommandHandler`] is called when executed.
12071207 #[ serde( skip_serializing_if = "Option::is_none" , skip_deserializing) ]
12081208 pub commands : Option < Vec < CommandDefinition > > ,
1209- /// Canvas V1.1 declarations. Each entry binds a [`CanvasDeclaration`] +
1209+ /// Canvas declarations. Each entry binds a [`CanvasDeclaration`] +
12101210 /// [`crate::canvas::CanvasHandler`] for this session; the runtime treats
12111211 /// the declaring connection as the live provider for every declared
12121212 /// canvas id. Serialized as an array of `CanvasDeclaration` on the wire.
@@ -1545,7 +1545,7 @@ impl SessionConfig {
15451545 self
15461546 }
15471547
1548- /// Renderer-side opt-in (V1.1) : surface canvas agent tools to the model.
1548+ /// Renderer-side opt-in: surface canvas agent tools to the model.
15491549 pub fn with_request_canvas_renderer ( mut self , enable : bool ) -> Self {
15501550 self . request_canvas_renderer = Some ( enable) ;
15511551 self
@@ -1748,7 +1748,7 @@ pub struct ResumeSessionConfig {
17481748 /// Advertise elicitation provider capability on resume.
17491749 #[ serde( skip_serializing_if = "Option::is_none" ) ]
17501750 pub request_elicitation : Option < bool > ,
1751- /// Renderer-side opt-in (V1.1) on resume; see
1751+ /// Renderer-side opt-in on resume; see
17521752 /// [`SessionConfig::request_canvas_renderer`].
17531753 #[ serde( skip_serializing_if = "Option::is_none" ) ]
17541754 pub request_canvas_renderer : Option < bool > ,
@@ -1818,7 +1818,7 @@ pub struct ResumeSessionConfig {
18181818 /// so the resume payload re-supplies the registration.
18191819 #[ serde( skip_serializing_if = "Option::is_none" , skip_deserializing) ]
18201820 pub commands : Option < Vec < CommandDefinition > > ,
1821- /// Canvas V1.1 declarations to (re-)register on resume. Same semantics
1821+ /// Canvas declarations to (re-)register on resume. Same semantics
18221822 /// as [`SessionConfig::canvases`]; re-declaring a canvas id replaces
18231823 /// the prior entry on the runtime side.
18241824 #[ serde( default , skip_serializing_if = "Vec::is_empty" , skip_deserializing) ]
@@ -2158,7 +2158,7 @@ impl ResumeSessionConfig {
21582158 self
21592159 }
21602160
2161- /// Renderer-side opt-in (V1.1) on resume: surface canvas agent tools to the model.
2161+ /// Renderer-side opt-in on resume: surface canvas agent tools to the model.
21622162 pub fn with_request_canvas_renderer ( mut self , enable : bool ) -> Self {
21632163 self . request_canvas_renderer = Some ( enable) ;
21642164 self
0 commit comments