mirror of https://github.com/OpenSPG/KAG
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
# Copyright 2023 OpenSPG Authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
# in compliance with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
# or implied.
|
|
import os
|
|
import logging
|
|
from kag.common.registry import import_modules_from_path
|
|
|
|
from kag.builder.runner import BuilderChainRunner
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def buildKB(file_path):
|
|
from kag.common.conf import KAG_CONFIG
|
|
|
|
runner = BuilderChainRunner.from_config(
|
|
KAG_CONFIG.all_config["kag_builder_pipeline"]
|
|
)
|
|
runner.invoke(file_path)
|
|
|
|
logger.info(f"\n\nbuildKB successfully for {file_path}\n\n")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import_modules_from_path(".")
|
|
dir_path = os.path.dirname(__file__)
|
|
file_path = os.path.join(dir_path, "data/2wiki_sub_corpus.json")
|
|
|
|
buildKB(file_path)
|