mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-20 12:34:17 +02:00
docs: update get_state and set_state references (#1306)
This commit is contained in:
parent
6fdb8d6a1c
commit
845546c53f
3 changed files with 6 additions and 6 deletions
|
|
@ -45,8 +45,8 @@ def my_tool(x: int, ctx: Context) -> str:
|
|||
client_id = ctx.client_id
|
||||
|
||||
# Manage state across the request
|
||||
ctx.set_state_value("key", "value")
|
||||
value = ctx.get_state_value("key")
|
||||
ctx.set_state("key", "value")
|
||||
value = ctx.get_state("key")
|
||||
|
||||
return str(x)
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue