mirror of
https://github.com/hwchase17/langchain.git
synced 2025-11-20 20:48:16 +00:00
```python
"""python scripts/update_mypy_ruff.py"""
import glob
import tomllib
from pathlib import Path
import toml
import subprocess
import re
ROOT_DIR = Path(__file__).parents[1]
def main():
for path in glob.glob(str(ROOT_DIR / "libs/**/pyproject.toml"), recursive=True):
print(path)
with open(path, "rb") as f:
pyproject = tomllib.load(f)
try:
pyproject["tool"]["poetry"]["group"]["typing"]["dependencies"]["mypy"] = (
"^1.10"
)
pyproject["tool"]["poetry"]["group"]["lint"]["dependencies"]["ruff"] = (
"^0.5"
)
except KeyError:
continue
with open(path, "w") as f:
toml.dump(pyproject, f)
cwd = "/".join(path.split("/")[:-1])
completed = subprocess.run(
"poetry lock --no-update; poetry install --with typing; poetry run mypy . --no-color",
cwd=cwd,
shell=True,
capture_output=True,
text=True,
)
logs = completed.stdout.split("\n")
to_ignore = {}
for l in logs:
if re.match("^(.*)\:(\d+)\: error:.*\[(.*)\]", l):
path, line_no, error_type = re.match(
"^(.*)\:(\d+)\: error:.*\[(.*)\]", l
).groups()
if (path, line_no) in to_ignore:
to_ignore[(path, line_no)].append(error_type)
else:
to_ignore[(path, line_no)] = [error_type]
print(len(to_ignore))
for (error_path, line_no), error_types in to_ignore.items():
all_errors = ", ".join(error_types)
full_path = f"{cwd}/{error_path}"
try:
with open(full_path, "r") as f:
file_lines = f.readlines()
except FileNotFoundError:
continue
file_lines[int(line_no) - 1] = (
file_lines[int(line_no) - 1][:-1] + f" # type: ignore[{all_errors}]\n"
)
with open(full_path, "w") as f:
f.write("".join(file_lines))
subprocess.run(
"poetry run ruff format .; poetry run ruff --select I --fix .",
cwd=cwd,
shell=True,
capture_output=True,
text=True,
)
if __name__ == "__main__":
main()
```
159 lines
5.2 KiB
Python
159 lines
5.2 KiB
Python
"""Question answering over a graph."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import re
|
|
from typing import Any, Dict, List, Optional
|
|
|
|
from langchain.chains.base import Chain
|
|
from langchain.chains.llm import LLMChain
|
|
from langchain_core.callbacks import CallbackManagerForChainRun
|
|
from langchain_core.language_models import BaseLanguageModel
|
|
from langchain_core.prompts import BasePromptTemplate
|
|
from langchain_core.pydantic_v1 import Field
|
|
|
|
from langchain_community.chains.graph_qa.prompts import (
|
|
CYPHER_GENERATION_PROMPT,
|
|
CYPHER_QA_PROMPT,
|
|
)
|
|
from langchain_community.graphs import FalkorDBGraph
|
|
|
|
INTERMEDIATE_STEPS_KEY = "intermediate_steps"
|
|
|
|
|
|
def extract_cypher(text: str) -> str:
|
|
"""
|
|
Extract Cypher code from a text.
|
|
Args:
|
|
text: Text to extract Cypher code from.
|
|
|
|
Returns:
|
|
Cypher code extracted from the text.
|
|
"""
|
|
# The pattern to find Cypher code enclosed in triple backticks
|
|
pattern = r"```(.*?)```"
|
|
|
|
# Find all matches in the input text
|
|
matches = re.findall(pattern, text, re.DOTALL)
|
|
|
|
return matches[0] if matches else text
|
|
|
|
|
|
class FalkorDBQAChain(Chain):
|
|
"""Chain for question-answering against a graph by generating Cypher statements.
|
|
|
|
*Security note*: Make sure that the database connection uses credentials
|
|
that are narrowly-scoped to only include necessary permissions.
|
|
Failure to do so may result in data corruption or loss, since the calling
|
|
code may attempt commands that would result in deletion, mutation
|
|
of data if appropriately prompted or reading sensitive data if such
|
|
data is present in the database.
|
|
The best way to guard against such negative outcomes is to (as appropriate)
|
|
limit the permissions granted to the credentials used with this tool.
|
|
|
|
See https://python.langchain.com/docs/security for more information.
|
|
"""
|
|
|
|
graph: FalkorDBGraph = Field(exclude=True)
|
|
cypher_generation_chain: LLMChain
|
|
qa_chain: LLMChain
|
|
input_key: str = "query" #: :meta private:
|
|
output_key: str = "result" #: :meta private:
|
|
top_k: int = 10
|
|
"""Number of results to return from the query"""
|
|
return_intermediate_steps: bool = False
|
|
"""Whether or not to return the intermediate steps along with the final answer."""
|
|
return_direct: bool = False
|
|
"""Whether or not to return the result of querying the graph directly."""
|
|
|
|
@property
|
|
def input_keys(self) -> List[str]:
|
|
"""Return the input keys.
|
|
|
|
:meta private:
|
|
"""
|
|
return [self.input_key]
|
|
|
|
@property
|
|
def output_keys(self) -> List[str]:
|
|
"""Return the output keys.
|
|
|
|
:meta private:
|
|
"""
|
|
_output_keys = [self.output_key]
|
|
return _output_keys
|
|
|
|
@property
|
|
def _chain_type(self) -> str:
|
|
return "graph_cypher_chain"
|
|
|
|
@classmethod
|
|
def from_llm(
|
|
cls,
|
|
llm: BaseLanguageModel,
|
|
*,
|
|
qa_prompt: BasePromptTemplate = CYPHER_QA_PROMPT,
|
|
cypher_prompt: BasePromptTemplate = CYPHER_GENERATION_PROMPT,
|
|
**kwargs: Any,
|
|
) -> FalkorDBQAChain:
|
|
"""Initialize from LLM."""
|
|
qa_chain = LLMChain(llm=llm, prompt=qa_prompt)
|
|
cypher_generation_chain = LLMChain(llm=llm, prompt=cypher_prompt)
|
|
|
|
return cls(
|
|
qa_chain=qa_chain,
|
|
cypher_generation_chain=cypher_generation_chain,
|
|
**kwargs,
|
|
)
|
|
|
|
def _call(
|
|
self,
|
|
inputs: Dict[str, Any],
|
|
run_manager: Optional[CallbackManagerForChainRun] = None,
|
|
) -> Dict[str, Any]:
|
|
"""Generate Cypher statement, use it to look up in db and answer question."""
|
|
_run_manager = run_manager or CallbackManagerForChainRun.get_noop_manager()
|
|
callbacks = _run_manager.get_child()
|
|
question = inputs[self.input_key]
|
|
|
|
intermediate_steps: List = []
|
|
|
|
generated_cypher = self.cypher_generation_chain.run(
|
|
{"question": question, "schema": self.graph.schema}, callbacks=callbacks
|
|
)
|
|
|
|
# Extract Cypher code if it is wrapped in backticks
|
|
generated_cypher = extract_cypher(generated_cypher)
|
|
|
|
_run_manager.on_text("Generated Cypher:", end="\n", verbose=self.verbose)
|
|
_run_manager.on_text(
|
|
generated_cypher, color="green", end="\n", verbose=self.verbose
|
|
)
|
|
|
|
intermediate_steps.append({"query": generated_cypher})
|
|
|
|
# Retrieve and limit the number of results
|
|
context = self.graph.query(generated_cypher)[: self.top_k]
|
|
|
|
if self.return_direct:
|
|
final_result = context
|
|
else:
|
|
_run_manager.on_text("Full Context:", end="\n", verbose=self.verbose)
|
|
_run_manager.on_text(
|
|
str(context), color="green", end="\n", verbose=self.verbose
|
|
)
|
|
|
|
intermediate_steps.append({"context": context})
|
|
|
|
result = self.qa_chain(
|
|
{"question": question, "context": context},
|
|
callbacks=callbacks,
|
|
)
|
|
final_result = result[self.qa_chain.output_key]
|
|
|
|
chain_result: Dict[str, Any] = {self.output_key: final_result}
|
|
if self.return_intermediate_steps:
|
|
chain_result[INTERMEDIATE_STEPS_KEY] = intermediate_steps
|
|
|
|
return chain_result
|