Multi-Rag / src /Web /models /web_model.py
VashuTheGreat's picture
Clean commit without images
1f725d8
from typing import TypedDict, Optional
class State(TypedDict):
url: str
page_content: Optional[str]
llm_response: Optional[str]