Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.17 KB

File metadata and controls

38 lines (29 loc) · 1.17 KB

Chat with Your Data Using ChatGPT

This is the repository for the LinkedIn Learning course Chat with Your Data Using ChatGPT. The full course is available from [LinkedIn Learning][lil-course-url].

course-name-alt-text

Requirements

Setup

  1. Clone this repo (or download the files).
  2. Create and activate a virtual environment:
    python -m venv venv
    source venv/bin/activate   # macOS/Linux
    venv\Scripts\activate      # Windows
  3. Install dependencies:
    pip install -r requirements.txt
  4. Set your OpenAI API key or place in .env file:
    export OPENAI_API_KEY="your_api_key"      # macOS/Linux
    setx OPENAI_API_KEY "your_api_key"        # Windows PowerShell

Running the Examples

Run the main demo script to see all lessons in action:

python research_agent.py