Back to the catalog

Files

Bundle OKF 0.2 · 6 conceitos · SigireddyBalasai/nvidia_new

Open source Repository Open in the app JSON README (API)

About

# Files

- [Quickstart Guide](quickstart.md) - Task-routing map for navigating the wiki; setup, development, and deployment entry points.

# Directories

- [architecture](architecture/)
- [configuration](configuration/)
- [deployment](deployment/)
- [frontend](frontend/)
- [testing](testing/)

Details

Kind
OKF bundles
Topic
Cloud & DevOps
Publisher
sigireddybalasai
Origin
okf_github
Category
dados
Version
0.2
Last push
2026-09-08T07:23:56Z
Repository state
ativo
Language
TypeScript
Added
2026-09-08 02:18:52
Updated
2026-09-08 02:18:52
Origin id
SigireddyBalasai/nvidia_new:openwiki/index.md

README

# Deep Agents Template

Deployment template for a deep agent built with `create_deep_agent(...)`.

## What this template gives you

- A deployable deep agent graph at `src/deep_agent/graph.py`.
- Explicit workflow prompt (plan, delegate, critique, finalize).
- Two predefined sub-agents (`researcher`, `critic`).
- Human-in-the-loop interrupts on `execute` and `write_file`.
- A `uv`-managed local workflow with a small `Makefile` wrapper and starter tests.

## Prerequisites

- An API key for your model provider (Anthropic by default)
- A [LangSmith](https://smith.langchain.com/) account (Plus plan or higher) to deploy

## Quickstart

1. Sync the project and configure environment:

```bash
uv sync
cp .env.example .env
```

2. Start the dev server:

```bash
uv run langgraph dev
```

3. Deploy to LangSmith:

```bash
uv run langgraph deploy
```

See the [CLI docs](https://docs.langchain.com/langsmith/cli#deploy) for deploy options.

To set up CI instead, push this repo to GitHub and configure your deployment through the LangSmith UI.

## Tests and lint

```bash
make test
make integration-tests
make lint
make format
```

Integration tests are skipped unless `ANTHROPIC_API_KEY` is set.

## Reference docs

- Deep Agents overview: https://docs.langchain.com/oss/python/deepagents/overview
- Deep Agents quickstart: https://docs.langchain.com/oss/python/deepagents/quickstart
- LangSmith CLI: https://docs.langchain.com/langsmith/cli

More