File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ async def get_invocation_cache_status() -> InvocationCacheStatus:
181
181
response_model = JsonValue | None ,
182
182
)
183
183
async def get_client_state_by_key (
184
- key : str = Query (..., description = "Key to retrieve from client state persistence " ),
184
+ key : str = Query (..., description = "Key to get " ),
185
185
) -> JsonValue | None :
186
186
"""Gets the client state"""
187
187
try :
@@ -197,7 +197,7 @@ async def get_client_state_by_key(
197
197
response_model = None ,
198
198
)
199
199
async def set_client_state (
200
- key : str = Body (..., description = "Key to set" ),
200
+ key : str = Query (..., description = "Key to set" ),
201
201
value : JsonValue = Body (..., description = "Value of the key" ),
202
202
) -> None :
203
203
"""Sets the client state"""
You can’t perform that action at this time.
0 commit comments