mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-25 04:26:41 -04:00
4d697d3f24
--------- Co-authored-by: Bagatur <baskaryan@gmail.com>
48 lines
1.7 KiB
Python
48 lines
1.7 KiB
Python
"""Graph Index Creator."""
|
|
from typing import Optional, Type
|
|
|
|
from pydantic import BaseModel
|
|
|
|
from langchain import BasePromptTemplate
|
|
from langchain.chains.llm import LLMChain
|
|
from langchain.graphs.networkx_graph import NetworkxEntityGraph, parse_triples
|
|
from langchain.indexes.prompts.knowledge_triplet_extraction import (
|
|
KNOWLEDGE_TRIPLE_EXTRACTION_PROMPT,
|
|
)
|
|
from langchain.schema.language_model import BaseLanguageModel
|
|
|
|
|
|
class GraphIndexCreator(BaseModel):
|
|
"""Functionality to create graph index."""
|
|
|
|
llm: Optional[BaseLanguageModel] = None
|
|
graph_type: Type[NetworkxEntityGraph] = NetworkxEntityGraph
|
|
|
|
def from_text(
|
|
self, text: str, prompt: BasePromptTemplate = KNOWLEDGE_TRIPLE_EXTRACTION_PROMPT
|
|
) -> NetworkxEntityGraph:
|
|
"""Create graph index from text."""
|
|
if self.llm is None:
|
|
raise ValueError("llm should not be None")
|
|
graph = self.graph_type()
|
|
chain = LLMChain(llm=self.llm, prompt=prompt)
|
|
output = chain.predict(text=text)
|
|
knowledge = parse_triples(output)
|
|
for triple in knowledge:
|
|
graph.add_triple(triple)
|
|
return graph
|
|
|
|
async def afrom_text(
|
|
self, text: str, prompt: BasePromptTemplate = KNOWLEDGE_TRIPLE_EXTRACTION_PROMPT
|
|
) -> NetworkxEntityGraph:
|
|
"""Create graph index from text asynchronously."""
|
|
if self.llm is None:
|
|
raise ValueError("llm should not be None")
|
|
graph = self.graph_type()
|
|
chain = LLMChain(llm=self.llm, prompt=prompt)
|
|
output = await chain.apredict(text=text)
|
|
knowledge = parse_triples(output)
|
|
for triple in knowledge:
|
|
graph.add_triple(triple)
|
|
return graph
|