interrupt26-deepagents
interrupt 2026 deepagents workshop
File Explorer
- SKILL.md
- agent.py
- AGENTS.md
- deepAgentBackends.png
- deepAgentHITL.png
- deepAgentMemories.png
- deepAgentMiddleware.png
- deepAgentsDiag.png
- deepAgentsHarnessOverview.png
- deepAgentSubagents.png
- LangChain Summarization.png
- Offloading Inputs LangChain.png
- Offloading Results LangChain.png
- __init__.py
- models.py
- .env.example
- .gitignore
- deep_agent.ipynb
- env_utils.py
- langgraph.json
- pyproject.toml
- README.md
- uv.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
uv run
View Details ▼
uv run
Run a command or script in the project environment.
uv run {{path/to/script.py}}
Run a Python script:
uv run {{[-m|--module]}} {{module_name}}
Run a Python module:
uv run {{[-w|--with]}} {{package}} {{command}}
Run a command with additional packages installed temporarily:
uv sync
View Details ▼
uv sync
Update the project's environment to match the lockfile.
uv sync
Sync the project environment with the lockfile:
uv sync --all-extras
Sync and include all optional dependencies:
uv sync --extra {{extra_name}}
Sync with specific optional dependencies:
