mirror of
https://github.com/browser-use/browser-use.git
synced 2025-02-18 01:18:20 +03:00
7 lines
157 B
Python
7 lines
157 B
Python
import os
|
|
import sys
|
|
|
|
# Get the absolute path to the project root
|
|
project_root = os.path.dirname(os.path.abspath(__file__))
|
|
sys.path.insert(0, project_root)
|