1f725d8
1
2
3
4
5
6
7
from typing import TypedDict, Optional class State(TypedDict): url: str page_content: Optional[str] llm_response: Optional[str]