https://github.com/droxer/agent-cookbook
https://github.com/droxer/agent-cookbook
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/droxer/agent-cookbook
- Owner: droxer
- Created: 2024-09-22T15:43:30.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-08T13:48:53.000Z (over 1 year ago)
- Last Synced: 2025-03-08T14:26:45.285Z (over 1 year ago)
- Language: Python
- Size: 4.55 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Agent Cookbook
## Setup
1. Install uv:
```bash
pip install uv
```
2. Create and activate a virtual environment:
```bash
uv venv
source .venv/bin/activate # On Unix/macOS
# or
.venv\Scripts\activate # On Windows
```
3. Install dependencies:
```bash
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:
```bash
# Add the dependency to pyproject.toml under [project.dependencies], then run:
uv sync
```
- To update dependencies:
```bash
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.