Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 593 Bytes

File metadata and controls

31 lines (22 loc) · 593 Bytes

Setup Steps

Virtual Environment

Create a virtual environment to separate Python dependencies, allowing for project-specific packages without interfering with system-wide installations.

python3 -m venv venv
source venv/bin/activate

Install Dependencies

pip install -r requirements.txt
playwright install

Setup Environment Variables

export SIRJI_OPENAI_API_KEY='OPENAI API KEY'
export SIRJI_GOOGLE_SEARCH_API_KEY='GOOGLE SEARCH API KEY'
export SIRJI_GOOGLE_SEARCH_ENGINE_ID='GOOGLE SEARCH ENGINE ID'

Start Sirji

python3 main.py