mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-22 17:25:22 -04:00
11 lines
296 B
Python
11 lines
296 B
Python
"""Module defines common test data."""
|
|
from pathlib import Path
|
|
|
|
_THIS_DIR = Path(__file__).parent
|
|
|
|
_EXAMPLES_DIR = _THIS_DIR / "integration_tests" / "examples"
|
|
|
|
# Paths to test PDF files
|
|
HELLO_PDF = _EXAMPLES_DIR / "hello.pdf"
|
|
LAYOUT_PARSER_PAPER_PDF = _EXAMPLES_DIR / "layout-parser-paper.pdf"
|