reorg content graph

This commit is contained in:
LUIS NOVO 2024-10-28 16:31:22 -03:00
parent 3f997aa22c
commit 669891617b
4 changed files with 281 additions and 0 deletions

View file

@ -0,0 +1,13 @@
from typing_extensions import TypedDict
class SourceState(TypedDict):
content: str
file_path: str
url: str
title: str
source_type: str
identified_type: str
identified_provider: str
metadata: dict
delete_source: bool = False