@@ -50,7 +50,7 @@ def health(
5050 extra_body : Body | None = None ,
5151 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
5252 ) -> AgentHealthResponse :
53- """Get the health of the agent"""
53+ """Retrieve the health of the agent. """
5454 return self ._get (
5555 "/health" ,
5656 options = make_request_options (
@@ -69,7 +69,7 @@ def version(
6969 extra_body : Body | None = None ,
7070 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
7171 ) -> AgentVersionResponse :
72- """Get the version of the agent"""
72+ """Retrieve the version of the agent. """
7373 return self ._get (
7474 "/version" ,
7575 options = make_request_options (
@@ -109,7 +109,7 @@ async def health(
109109 extra_body : Body | None = None ,
110110 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
111111 ) -> AgentHealthResponse :
112- """Get the health of the agent"""
112+ """Retrieve the health of the agent. """
113113 return await self ._get (
114114 "/health" ,
115115 options = make_request_options (
@@ -128,7 +128,7 @@ async def version(
128128 extra_body : Body | None = None ,
129129 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
130130 ) -> AgentVersionResponse :
131- """Get the version of the agent"""
131+ """Retrieve the version of the agent. """
132132 return await self ._get (
133133 "/version" ,
134134 options = make_request_options (
0 commit comments