We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f300e8f commit d2dc31aCopy full SHA for d2dc31a
Cargo.toml
@@ -20,7 +20,6 @@ unstable_session_list = []
20
21
[lib]
22
path = "rust/acp.rs"
23
-doctest = false
24
25
[[bin]]
26
name = "generate"
rust/acp.rs
@@ -84,10 +84,10 @@ use std::sync::Arc;
84
/// # Example
85
///
86
/// ```
87
-/// use agent_client_protocol::SessionId;
+/// use agent_client_protocol_schema::SessionId;
88
/// use std::sync::Arc;
89
90
-/// let session_id = SessionId(Arc::from("sess_abc123def456"));
+/// let session_id = SessionId::new("sess_abc123def456");
91
92
93
/// See protocol docs: [Session ID](https://agentclientprotocol.com/protocol/session-setup#session-id)
0 commit comments