2023-10-29 22:50:09 +00:00
|
|
|
import argparse
|
2023-07-26 19:38:58 +00:00
|
|
|
import importlib
|
|
|
|
import inspect
|
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Base URL for all class documentation
|
2023-07-30 01:31:33 +00:00
|
|
|
_BASE_URL = "https://api.python.langchain.com/en/latest/"
|
2023-07-26 19:38:58 +00:00
|
|
|
|
|
|
|
# Regular expression to match Python code blocks
|
2024-04-23 00:36:41 +00:00
|
|
|
code_block_re = re.compile(r"^(```\s?python\n)(.*?)(```)", re.DOTALL | re.MULTILINE)
|
2023-07-26 19:38:58 +00:00
|
|
|
# Regular expression to match langchain import lines
|
2023-07-29 15:44:32 +00:00
|
|
|
_IMPORT_RE = re.compile(
|
2024-04-23 00:36:41 +00:00
|
|
|
r"from\s+(langchain(?:_\w+)?(?:\.\w+)*?)\s+import\s+"
|
2023-07-29 15:44:32 +00:00
|
|
|
r"((?:\w+(?:,\s*)?)*" # Match zero or more words separated by a comma+optional ws
|
|
|
|
r"(?:\s*\(.*?\))?)", # Match optional parentheses block
|
|
|
|
re.DOTALL, # Match newlines as well
|
|
|
|
)
|
2023-07-26 19:38:58 +00:00
|
|
|
|
|
|
|
_CURRENT_PATH = Path(__file__).parent.absolute()
|
|
|
|
# Directory where generated markdown files are stored
|
2024-06-20 19:36:49 +00:00
|
|
|
_DOCS_DIR = _CURRENT_PATH.parent.parent / "docs"
|
2023-07-26 19:38:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
def find_files(path):
|
|
|
|
"""Find all MDX files in the given path"""
|
2023-07-29 15:44:32 +00:00
|
|
|
# Check if is file first
|
2024-06-04 19:09:22 +00:00
|
|
|
if ".ipynb_checkpoints" in str(path):
|
|
|
|
return
|
2023-07-29 15:44:32 +00:00
|
|
|
if os.path.isfile(path):
|
|
|
|
yield path
|
|
|
|
return
|
2023-07-26 19:38:58 +00:00
|
|
|
for root, _, files in os.walk(path):
|
|
|
|
for file in files:
|
|
|
|
if file.endswith(".mdx") or file.endswith(".md"):
|
2024-06-04 19:09:22 +00:00
|
|
|
full = os.path.join(root, file)
|
|
|
|
if ".ipynb_checkpoints" in str(full):
|
|
|
|
continue
|
|
|
|
yield full
|
2023-07-26 19:38:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_full_module_name(module_path, class_name):
|
|
|
|
"""Get full module name using inspect"""
|
|
|
|
module = importlib.import_module(module_path)
|
|
|
|
class_ = getattr(module, class_name)
|
|
|
|
return inspect.getmodule(class_).__name__
|
|
|
|
|
|
|
|
|
2023-07-29 15:44:32 +00:00
|
|
|
def get_args():
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument(
|
|
|
|
"--docs_dir",
|
|
|
|
type=str,
|
|
|
|
default=_DOCS_DIR,
|
|
|
|
help="Directory where generated markdown files are stored",
|
|
|
|
)
|
2024-05-02 00:34:05 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--json_path",
|
|
|
|
type=str,
|
|
|
|
default=None,
|
|
|
|
help="Path to store the generated JSON file",
|
|
|
|
)
|
2023-07-29 15:44:32 +00:00
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
|
2023-07-26 19:38:58 +00:00
|
|
|
def main():
|
|
|
|
"""Main function"""
|
2023-07-29 15:44:32 +00:00
|
|
|
args = get_args()
|
2023-07-26 19:38:58 +00:00
|
|
|
global_imports = {}
|
|
|
|
|
2023-07-29 15:44:32 +00:00
|
|
|
for file in find_files(args.docs_dir):
|
2023-07-26 19:38:58 +00:00
|
|
|
file_imports = replace_imports(file)
|
2024-06-20 19:36:49 +00:00
|
|
|
print(file)
|
2023-07-26 19:38:58 +00:00
|
|
|
|
|
|
|
if file_imports:
|
|
|
|
# Use relative file path as key
|
2023-07-29 15:44:32 +00:00
|
|
|
relative_path = (
|
2024-04-22 21:05:29 +00:00
|
|
|
os.path.relpath(file, args.docs_dir)
|
|
|
|
.replace(".mdx", "/")
|
|
|
|
.replace(".md", "/")
|
2023-07-29 15:44:32 +00:00
|
|
|
)
|
|
|
|
|
2024-06-04 19:09:22 +00:00
|
|
|
doc_url = f"https://python.langchain.com/v0.2/docs/{relative_path}"
|
2023-07-26 19:38:58 +00:00
|
|
|
for import_info in file_imports:
|
|
|
|
doc_title = import_info["title"]
|
|
|
|
class_name = import_info["imported"]
|
|
|
|
if class_name not in global_imports:
|
|
|
|
global_imports[class_name] = {}
|
|
|
|
global_imports[class_name][doc_title] = doc_url
|
|
|
|
|
|
|
|
# Write the global imports information to a JSON file
|
2024-05-02 00:34:05 +00:00
|
|
|
if args.json_path:
|
|
|
|
json_path = Path(args.json_path)
|
|
|
|
json_path.parent.mkdir(parents=True, exist_ok=True)
|
|
|
|
with json_path.open("w") as f:
|
|
|
|
json.dump(global_imports, f)
|
2023-07-26 19:38:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
def _get_doc_title(data: str, file_name: str) -> str:
|
|
|
|
try:
|
2024-06-04 19:09:22 +00:00
|
|
|
return re.findall(r"^#\s*(.*)", data, re.MULTILINE)[0]
|
2023-07-26 19:38:58 +00:00
|
|
|
except IndexError:
|
|
|
|
pass
|
|
|
|
# Parse the rst-style titles
|
|
|
|
try:
|
|
|
|
return re.findall(r"^(.*)\n=+\n", data, re.MULTILINE)[0]
|
|
|
|
except IndexError:
|
|
|
|
return file_name
|
|
|
|
|
|
|
|
|
|
|
|
def replace_imports(file):
|
2023-07-29 15:44:32 +00:00
|
|
|
"""Replace imports in each Python code block with links to their
|
|
|
|
documentation and append the import info in a comment"""
|
2023-07-26 19:38:58 +00:00
|
|
|
all_imports = []
|
|
|
|
with open(file, "r") as f:
|
|
|
|
data = f.read()
|
|
|
|
|
|
|
|
file_name = os.path.basename(file)
|
|
|
|
_DOC_TITLE = _get_doc_title(data, file_name)
|
|
|
|
|
|
|
|
def replacer(match):
|
|
|
|
# Extract the code block content
|
|
|
|
code = match.group(2)
|
|
|
|
# Replace if any import comment exists
|
|
|
|
# TODO: Use our own custom <code> component rather than this
|
|
|
|
# injection method
|
|
|
|
existing_comment_re = re.compile(r"^<!--IMPORTS:.*?-->\n", re.MULTILINE)
|
|
|
|
code = existing_comment_re.sub("", code)
|
|
|
|
|
|
|
|
# Process imports in the code block
|
|
|
|
imports = []
|
|
|
|
for import_match in _IMPORT_RE.finditer(code):
|
2023-07-29 15:44:32 +00:00
|
|
|
module = import_match.group(1)
|
2024-04-22 21:05:29 +00:00
|
|
|
if "pydantic_v1" in module:
|
|
|
|
continue
|
2023-07-29 15:44:32 +00:00
|
|
|
imports_str = (
|
2024-04-22 21:05:29 +00:00
|
|
|
import_match.group(2).replace("(\n", "").replace("\n)", "")
|
2023-07-29 15:44:32 +00:00
|
|
|
) # Handle newlines within parentheses
|
|
|
|
# remove any newline and spaces, then split by comma
|
|
|
|
imported_classes = [
|
|
|
|
imp.strip()
|
|
|
|
for imp in re.split(r",\s*", imports_str.replace("\n", ""))
|
|
|
|
if imp.strip()
|
|
|
|
]
|
|
|
|
for class_name in imported_classes:
|
|
|
|
try:
|
|
|
|
module_path = get_full_module_name(module, class_name)
|
|
|
|
except AttributeError as e:
|
|
|
|
logger.warning(f"Could not find module for {class_name}, {e}")
|
|
|
|
continue
|
|
|
|
except ImportError as e:
|
|
|
|
logger.warning(f"Failed to load for class {class_name}, {e}")
|
|
|
|
continue
|
2024-04-22 21:05:29 +00:00
|
|
|
if len(module_path.split(".")) < 2:
|
|
|
|
continue
|
2023-07-29 15:44:32 +00:00
|
|
|
url = (
|
|
|
|
_BASE_URL
|
|
|
|
+ module_path.split(".")[1]
|
|
|
|
+ "/"
|
|
|
|
+ module_path
|
|
|
|
+ "."
|
|
|
|
+ class_name
|
|
|
|
+ ".html"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Add the import information to our list
|
|
|
|
imports.append(
|
|
|
|
{
|
|
|
|
"imported": class_name,
|
|
|
|
"source": module,
|
|
|
|
"docs": url,
|
|
|
|
"title": _DOC_TITLE,
|
|
|
|
}
|
|
|
|
)
|
2023-07-26 19:38:58 +00:00
|
|
|
|
|
|
|
if imports:
|
|
|
|
all_imports.extend(imports)
|
|
|
|
# Create a unique comment containing the import information
|
|
|
|
import_comment = f"<!--IMPORTS:{json.dumps(imports)}-->"
|
|
|
|
# Inject the import comment at the start of the code block
|
|
|
|
return match.group(1) + import_comment + "\n" + code + match.group(3)
|
|
|
|
else:
|
|
|
|
# If there are no imports, return the original match
|
|
|
|
return match.group(0)
|
|
|
|
|
|
|
|
# Use re.sub to replace each Python code block
|
|
|
|
data = code_block_re.sub(replacer, data)
|
|
|
|
|
2024-05-07 19:30:17 +00:00
|
|
|
# if all_imports:
|
2024-05-22 22:21:08 +00:00
|
|
|
# print(f"Adding {len(all_imports)} links for imports in {file}")
|
2023-07-26 19:38:58 +00:00
|
|
|
with open(file, "w") as f:
|
|
|
|
f.write(data)
|
|
|
|
return all_imports
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|