Files
Auto-GPT/tests/context.py
Andres Caicedo f8dfedf1c6 Add function and class descriptions to tests (#2715)
Co-authored-by: Reinier van der Leer <github@pwuts.nl>
2023-04-24 14:55:49 +02:00

8 lines
200 B
Python

import os
import sys
# Add the scripts directory to the path so that we can import the browse module.
sys.path.insert(
0, os.path.abspath(os.path.join(os.path.dirname(__file__), "../scripts"))
)