fix: Add dataset id as optional parameter (#958)
<!-- .github/pull_request_template.md --> ## Description <!-- Provide a clear description of the changes in this PR --> ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin.
This commit is contained in:
parent
844374728d
commit
042e533975
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue