Skip to content

Setup the Agent Repository

Clone the repository

Open your terminal and fork/clone the demo repository:

# Navigate to the directory you want to use:
cd /path/to/your/workspace/

# Clone the repo
git clone https://github.com/okahu-demos/lg-travel-agent

Open this folder in VS Code (File > Open Folder...)

Install dependencies

Create and activate a virtual environment, then install dependencies:

python -m venv venv
source venv/bin/activate  # Or `venv\Scripts\activate` on Windows
pip install -r requirements.txt

Set API keys

Set your LLM API keys (OpenAI) in the demo repo using the export command:

export OPENAI_API_KEY=your_openai_api_key_here