mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02: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)
|