Skip to content

Commit

Permalink
fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
simon824 committed Feb 2, 2024
1 parent 7277bb5 commit bbf723e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 4 additions & 3 deletions hugegraph-llm/examples/build_kg_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@
}

(
builder
.import_schema(from_hugegraph="xxx").print_result()
builder.import_schema(from_hugegraph="xxx")
.print_result()
# .import_schema(from_extraction="xxx").print_result()
# .import_schema(from_user_defined=xxx).print_result()
.extract_triples(TEXT).print_result()
.extract_triples(TEXT)
.print_result()
.disambiguate_word_sense()
.commit_to_hugegraph()
.run()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

import unittest

from hugegraph_llm.llms.init_llm import LLMs
from hugegraph_llm.operators.llm_op.disambiguate_data import DisambiguateData


Expand Down

0 comments on commit bbf723e

Please sign in to comment.