Ingest

Ingest data from files, databases, APIs, or streams into Semantica knowledge graphs with schema mapping and entity linking.

semantica-agi Updated

File contents

/semantica:ingest

Ingest new data into the knowledge graph. Usage: /semantica:ingest <source> [args]

$ARGUMENTS = source type + optional file path, connection string, or dataset identifier.


file <path> [--format json|csv|yaml|xml]

Ingest structured data from a local file.

from semantica.ingest import ingest_file

data = ingest_file(file_path=path, method='file', file_format=file_format)

Output: imported node/edge count and ingestion summary.


db <connection> [--query <sql>]

Ingest data from a database source.

from semantica.ingest import ingest_database

result = ingest_database(connection_string=conn, query=query)

Return: rows ingested, mapped entities, and warnings.

semantica-agi/semantica/tree/main/plugins/skills/ingest commit 065cbf9c93

Frequently asked questions

npx skillmds@latest add semantica-agi/ingest