leonwoo's picture
Upload 22 files
1777acb verified
raw
history blame contribute delete
157 Bytes
"""Shared constants for the agent."""
from pathlib import Path
CACHE_DIR = Path(__file__).resolve().parent.parent / "cache"
CACHE_DIR.mkdir(exist_ok=True)