Skip to main content

github_copilot_sdk/
sdk_protocol_version.rs

1// Code generated by update-protocol-version.ts. DO NOT EDIT.
2
3//! The SDK protocol version. Must match the version expected by the
4//! copilot-agent-runtime server.
5
6/// The SDK protocol version.
7pub const SDK_PROTOCOL_VERSION: u32 = 3;
8
9/// Returns the SDK protocol version.
10#[must_use]
11pub const fn get_sdk_protocol_version() -> u32 {
12    SDK_PROTOCOL_VERSION
13}