Current section

Files

Jump to
copilot_sdk_supercharged lib copilot sdk_protocol_version.ex
Raw

lib/copilot/sdk_protocol_version.ex

defmodule Copilot.SdkProtocolVersion do
@moduledoc """
SDK protocol version constant.
This must match the version expected by the copilot-agent-runtime server.
Code generated from sdk-protocol-version.json. DO NOT EDIT.
"""
@sdk_protocol_version 2
@doc """
Returns the SDK protocol version number.
"""
@spec get() :: non_neg_integer()
def get, do: @sdk_protocol_version
end