Skip to main content
GET
/
version
Python
from miru_agent_sdk import Miru

client = Miru()
response = client.agent.version()
print(response.commit)
{
  "version": "v0.1.0",
  "commit": "a1b2c3d4"
}

Response

200 - application/json

Successfully retrieved the version of the agent.

version
string
required

The version of the agent.

Example:

"v0.1.0"

commit
string
required

The commit hash of the agent.

Example:

"a1b2c3d4"

I