Code Monkey home page Code Monkey logo

langgraph-studio's Introduction

LangGraph Studio

LangGraph Studio (Beta)

LangGraph Studio offers a new way to develop LLM applications by providing a specialized agent IDE that enables visualization, interaction, and debugging of complex agentic applications

With visual graphs and the ability to edit state, you can better understand agent workflows and iterate faster. LangGraph Studio integrates with LangSmith so you can collaborate with teammates to debug failure modes.

While in Beta, LangGraph Studio is available for free to all LangSmith users on any plan tier. Sign up for LangSmith here.

Download

Currently only Apple Silicon Macs are supported. Download the latest .dmg file of LangGraph Studio by clicking here or by visiting the releases page.

Setup

LangGraph Studio requires Docker Desktop version 4.24 or higher. Please make sure you have Docker installed and running before continuing.

To use LangGraph Studio, make sure you have a project with a LangGraph app set up.

For this example, we will use this example repository here:

git clone https://github.com/langchain-ai/langgraph-example.git

You will then want to create a .env file with the relevant environment variables:

cp .env.example .env

You should then open up the .env file and fill in with relevant OpenAI, Anthropic, and Tavily API keys.

Once you've set up the project, you can use it in LangGraph Studio. Let's dive in!

Open a project

When you open LangGraph Studio desktop app for the first time, you need to login via LangSmith.

Login Screen

Once you have successfully authenticated, you can choose the LangGraph application folder to use โ€” you can either drag and drop or manually select it in the file picker. If you are using the example project, the folder would be langgraph-example.

Important

The application directory you select needs to contain correctly configured langgraph.json file. See more information on how to configure it here and how to set up a LangGraph app here.

Select Project Screen

Once you select a valid project, LangGraph Studio will start a LangGraph API server and you should see a UI with your graph rendered.

Graph Screen

Invoke graph

Now we can run the graph! LangGraph Studio lets you run your graph with different inputs and configurations.

Start a new run

To start a new run:

  1. In the dropdown menu (top-left corner of the left-hand pane), select a graph. In our example the graph is called agent. The list of graphs corresponds to the graphs keys in your langgraph.json configuration.
  2. In the bottom of the left-hand pane, edit the Input section.
  3. Click Submit to invoke the selected graph.
  4. View output of the invocation in the right-hand pane.

The following video shows how to start a new run:

graph_invoke.mp4

Configure graph run

To change configuration for a given graph run, press Configurable button in the Input section. Then click Submit to invoke the graph.

Important

In order for the Configurable menu to be visible, make sure to specify config_schema when creating StateGraph. You can read more about how to add config schema to your graph here.

The following video shows how to edit configuration and start a new run:

graph_config.mp4

Create and edit threads

Create a thread

When you open LangGraph Studio, you will automatically be in a new thread window. If you have an existing thread open, follow these steps to create a new thread:

  1. In the top-right corner of the right-hand pane, press + to open a new thread menu.

The following video shows how to create a thread:

create_thread.mp4

Select a thread

To select a thread:

  1. Click on New Thread / Thread <thread-id> label at the top of the right-hand pane to open a thread list dropdown.
  2. Select a thread that you wish to view / edit.

The following video shows how to select a thread:

select_thread.mp4

Edit thread state

LangGraph Studio allows you to edit the thread state and fork the threads to create alternative graph execution with the updated state. To do it:

  1. Select a thread you wish to edit.
  2. In the right-hand pane hover over the step you wish to edit and click on "pencil" icon to edit.
  3. Make your edits.
  4. Click Fork to update the state and create a new graph execution with the updated state.

The following video shows how to edit a thread in the studio:

fork_thread.mp4

How to add interrupts to your graph

You might want to execute your graph step by step, or stop graph execution before/after a specific node executes. You can do so by adding interrupts. Interrupts can be set for all nodes (i.e. walk through the agent execution step by step) or for specific nodes. An interrupt in LangGraph Studio means that the graph execution will be interrupted both before and after a given node runs.

Add interrupts to a list of nodes

To walk through the agent execution step by step, you can add interrupts to a all or a subset of nodes in the graph:

  1. In the dropdown menu (top-right corner of the left-hand pane), click Interrupt.
  2. Select a subset of nodes to interrupt on, or click Interrupt on all.

The following video shows how to add interrupts to all nodes:

graph_interrupts_all.mp4

Add interrupt to a specific node

  1. Navigate to the left-hand pane with the graph visualization.
  2. Hover over a node you want to add an interrupt to. You should see a + button show up on the left side of the node.
  3. Click + to invoke the selected graph.
  4. Run the graph by adding Input / configuration and clicking Submit

The following video shows how to add interrupts to a specific node:

graph_interrupts.mp4

To remove the interrupt, simply follow the same step and press x button on the left side of the node.

Edit project config

LangGraph Studio allows you to modify your project config (langgraph.json) interactively.

To modify the config from the studio, follow these steps:

  1. Click Configure on the bottom right. This will open an interactive config menu with the values that correspond to the existing langgraph.json.
  2. Make your edits.
  3. Click Save and Restart to reload the LangGraph API server with the updated config.

The following video shows how to edit project config from the studio:

graph_edit_json.mp4

Edit graph code

With LangGraph Studio you can modify your graph code and sync the changes live to the interactive graph.

To modify your graph from the studio, follow these steps:

  1. Click Open in VS Code on the bottom right. This will open the project that is currently opened in LangGraph studio.
  2. Make changes to the .py files where the compiled graph is defined or associated dependencies.
  3. LangGraph studio will automatically reload once the changes are saved in the project directory.

The following video shows how to open code editor from the studio:

graph_edit_code.mp4

After you modify the underlying code you can also replay a node in the graph. For example, if an agent responds poorly, you can update the agent node implementation in your code editor and rerun it. This can make it much easier to iterate on long-running agents.

replay.mp4

langgraph-studio's People

Contributors

dqbd avatar hwchase17 avatar nfcampos avatar vbarda avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.