Skip to content

coder7475/ai-agents

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AI Agents

This repository contains various AI agents developed for different purposes.

Usage

1 Create and activate venv

# create venv
python3 -m venv .venv

# activate (Linux/macOS)
source .venv/bin/activate

# on Windows PowerShell
# .venv\Scripts\Activate.ps1

This makes .venv local to the repo and isolates packages from the system.[3][2]

2 Install required packages

With pip:

python -m pip install --upgrade pip
pip install -r requirements.txt

Using uv as a faster drop-in (optional):

uv pip install -r requirements.txt

The requirements.txt you already defined (pydantic, pydantic-settings, python-dotenv) will now be installed inside .venv, and any script run from the activated venv can import config and use get_settings().

References

  1. 5 days of Intensive AI Agents Intensive
  2. Agentic AI
  3. ADK

About

AI Agents

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages