Skip to content

cli==0.2.7

Choose a tag to compare

@github-actions github-actions released this 23 Apr 14:51
05f21a3

langgraph-cli 0.2.7

Summary of Changes

  • Added --image option to specify a pre-built Docker image for the langgraph-api service, skipping the build process (PR #4385)

Detailed Changes

CLI Commands

  • Added new --image option to the langgraph up command that allows specifying a Docker image to use for the langgraph-api service (PR #4385)
    • When provided, the CLI skips building a new image and uses the specified one directly
    • Useful for testing against images already built using langgraph build
    • Example usage: langgraph up --image my-custom-langgraph-image:latest

Docker Compose Generation

  • Modified internal Docker compose generation to support using pre-built images (PR #4385)
    • When an image is specified, the compose configuration is simplified to use that image
    • Skips Dockerfile generation and context setup when using a pre-built image