
eknowledge
eknowledge
is a Python package designed to facilitate the generation of knowledge graphs from textual inputs. It leverages language models to parse text and extract relationships between entities, organizing these relationships into a structured graph format. This tool is ideal for developers, researchers, and anyone interested in structured knowledge extraction from unstructured text.
Installation
Install eknowledge
using pip:
pip install eknowledge langchain_llm7
Usage
Here's a simple example to get you started with eknowledge
. This example demonstrates how to generate a knowledge graph from a given text input using the package.
Example
from eknowledge import execute_graph_generation
from langchain_llm7 import ChatLLM7
MODEL = "deepseek-r1"
llm = ChatLLM7(model=MODEL)
input_text = "The quick brown fox jumps over the lazy dog."
graph = execute_graph_generation(
text=input_text,
llm=llm,
chunk_size=100,
verbose=True
)
print(graph)
This script will output a knowledge graph based on the relationships identified in the text.
Contributing
Contributions are welcome! Please open issues or submit pull requests for any bugs, features, or improvements you would like to see.
License
eknowledge
is MIT licensed, as found in the LICENSE file.