Skip to content

droxer/agentic-cookbook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Agentic Cookbook

Setup

  1. Install uv:
pip install uv
  1. Create and activate a virtual environment:
uv venv
source .venv/bin/activate  # On Unix/macOS
# or
.venv\Scripts\activate  # On Windows
  1. Install dependencies:
uv sync

Development

Project configuration is managed in pyproject.toml. This includes:

  • Project metadata (name, version, authors)

  • Python version requirements

  • All project dependencies with their versions

  • To add new dependencies:

# Add the dependency to pyproject.toml under [project.dependencies], then run:
uv sync
  • To update dependencies:
uv sync --upgrade

Note: This project uses the Aliyun PyPI mirror for faster package downloads in China. If you're outside China, you can use the official PyPI repository by default.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages