Skip to content

AshraHossain/build-with-ai-creating-ai-agents-with-gpt-5

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build with AI: Creating AI Agents with GPT‑5

This repository contains the Python code examples from the LinkedIn Learning course Build with AI: Creating AI Agents with GPT‑5.

Build with AI: Creating AI Agents with GPT-5

You’ll learn how to:

  • Build agents that can call tools and take action
  • Steer GPT-5 output using verbosity and reasoning settings
  • Extend agents with custom tools for more capabilities

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
  5. Set your Weather API key or place in .env file:
    export WEATHER_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 agent.py

About

Repo for course: Build with AI: Creating AI Agents with GPT‑5

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%