github-copilot-sdk 1.0.0-beta.4

Rust SDK for programmatic control of the GitHub Copilot CLI via JSON-RPC. Technical preview, pre-1.0.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by update-protocol-version.ts. DO NOT EDIT.

//! The SDK protocol version. Must match the version expected by the
//! copilot-agent-runtime server.

/// The SDK protocol version.
pub const SDK_PROTOCOL_VERSION: u32 = 3;

/// Returns the SDK protocol version.
#[must_use]
pub const fn get_sdk_protocol_version() -> u32 {
    SDK_PROTOCOL_VERSION
}