mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
11 lines
278 B
Python
11 lines
278 B
Python
|
"""Module defines common test data."""
|
||
|
from pathlib import Path
|
||
|
|
||
|
_THIS_DIR = Path(__file__).parent
|
||
|
|
||
|
_EXAMPLES_DIR = _THIS_DIR / "examples"
|
||
|
|
||
|
# Paths to data files
|
||
|
MLB_TEAMS_2012_CSV = _EXAMPLES_DIR / "mlb_teams_2012.csv"
|
||
|
MLB_TEAMS_2012_SQL = _EXAMPLES_DIR / "mlb_teams_2012.sql"
|