mirror of
https://github.com/lfnovo/open-notebook.git
synced 2026-04-29 03:50:04 +00:00
13 lines
263 B
Python
13 lines
263 B
Python
from typing_extensions import TypedDict
|
|
|
|
|
|
class ContentState(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
|