Fix tag errors in sessions document page (#1307)

The tags in sessions document page are incomplete.
This commit is contained in:
Kazuhiro Sera
2025-07-30 17:14:44 +09:00
committed by GitHub
parent 7cc0c31cb0
commit d338f03274
+3 -2
View File
@@ -168,7 +168,7 @@ result2 = await Runner.run(
You can implement your own session memory by creating a class that follows the [`Session`][agents.memory.session.Session] protocol:
````python
```python
from agents.memory import Session
from typing import List
@@ -206,6 +206,7 @@ result = await Runner.run(
"Hello",
session=MyCustomSession("my_session")
)
```
## Session management
@@ -245,7 +246,7 @@ result2 = await Runner.run(
"What are my charges?",
session=session
)
````
```
## Complete example