fix: add fix to low level example
This commit is contained in:
parent
e52f9c6a20
commit
0bf8abcc6f
2 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ from typing import List, Union
|
||||||
from uuid import UUID
|
from uuid import UUID
|
||||||
|
|
||||||
from cognee.modules.data.models import Dataset
|
from cognee.modules.data.models import Dataset
|
||||||
from cognee.modules.data.methods import create_authorized_dataset
|
from cognee.modules.data.methods.create_authorized_dataset import create_authorized_dataset
|
||||||
from cognee.modules.data.exceptions import DatasetNotFoundError
|
from cognee.modules.data.exceptions import DatasetNotFoundError
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@ def ingest_files(data: List[Any]):
|
||||||
|
|
||||||
new_company.departments.append(departments_data_points[department_name])
|
new_company.departments.append(departments_data_points[department_name])
|
||||||
|
|
||||||
return companies_data_points.values()
|
return list(companies_data_points.values())
|
||||||
|
|
||||||
|
|
||||||
async def main():
|
async def main():
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue