forked from Archives/langchain
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"
|