Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Igor Ilic
8034916600 refactor: Allow none for dataset ids 2025-06-10 15:06:13 +02:00

View file

@ -11,7 +11,7 @@ from cognee.shared.data_models import KnowledgeGraph
class CognifyPayloadDTO(BaseModel):
datasets: List[str]
dataset_ids: Optional[List[UUID]]
dataset_ids: Optional[List[UUID]] = None
graph_model: Optional[BaseModel] = KnowledgeGraph