freshcrate
Skin:/
Home > Databases > langgraph-api

langgraph-api

No description

Why this rank:Release freshnessHealthy release cadence

Description

# LangGraph API This package implements the LangGraph API for rapid development and testing. Build and iterate on LangGraph agents with a tight feedback loop. The server is backed by a predominently in-memory data store that is persisted to local disk when the server is restarted. For production use, see the various [deployment options](https://langchain-ai.github.io/langgraph/concepts/deployment_options/) for the LangGraph API, which are backed by a production-grade database. ## Installation Install the `langgraph-cli` package with the `inmem` extra. Your CLI version must be no lower than `0.1.55`. ```bash pip install -U langgraph-cli[inmem] ``` ## Quickstart 1. (Optional) Clone a starter template: ```bash langgraph new --template new-langgraph-project-python ./my-project cd my-project ``` (Recommended) Use a virtual environment and install dependencies: ```bash python -m venv .venv source .venv/bin/activate python -m pip install . ``` 2. Start the development server: ```shell langgraph dev --config ./langgraph.json ``` 3. The server will launch, opening a browser window with the graph UI. Interact with your graph or make code edits; the server automatically reloads on changes. ## Usage Start the development server: ```bash langgraph dev ``` Your agent's state (threads, runs, assistants) persists in memory while the server is running - perfect for development and testing. Each run's state is tracked and can be inspected, making it easy to debug and improve your agent's behavior. ## How-To #### Attaching a debugger Debug mode lets you attach your IDE's debugger to the LangGraph API server to set breakpoints and step through your code line-by-line. 1. Install debugpy: ```bash pip install debugpy ``` 2. Start the server in debug mode: ```bash langgraph dev --debug-port 5678 ``` 3. Configure your IDE: - **VS Code**: Add this launch configuration: ```json { "name": "Attach to LangGraph", "type": "debugpy", "request": "attach", "connect": { "host": "0.0.0.0", "port": 5678 }, } ``` - **PyCharm**: Use "Attach to Process" and select the langgraph process 4. Set breakpoints in your graph code and start debugging. ## CLI options ```bash langgraph dev [OPTIONS] Options: --debug-port INTEGER Enable remote debugging on specified port --no-browser Skip opening browser on startup --n-jobs-per-worker INTEGER Maximum concurrent jobs per worker process --config PATH Custom configuration file path --no-reload Disable code hot reloading --port INTEGER HTTP server port (default: 8000) --host TEXT HTTP server host (default: localhost) ``` ## License This project is licensed under the Elastic License 2.0 - see the [LICENSE](./LICENSE) file for details.

Release History

VersionChangesUrgencyDate
0.8.0Imported from PyPI (0.8.0)Low4/21/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

alibabacloud-adb20211201Alibaba Cloud adb (20211201) SDK Library for Pythonmaster@2026-06-06
ydbYDB Python SDK3.29.1
typerTyper, build great CLIs. Easy to code. Based on Python type hints.0.26.7
django-timezone-fieldA Django app providing DB, form, and REST framework fields for zoneinfo and pytz timezone objects.main@2026-06-03
azure-storage-blobMicrosoft Azure Blob Storage Client Library for Pythonazure-mgmt-computelimit_1.1.0

More from pypi

markitdownUtility tool for converting various files to Markdown
fastapiFastAPI framework, high performance, easy to learn, fast to code, ready for production
djangoA high-level Python web framework that encourages rapid development and clean, pragmatic design.
flaskA simple framework for building complex web applications.

More in Databases

orbitOne API for 20+ LLM providers, your databases, and your files — self-hosted, open-source AI gateway with RAG, voice, and guardrails.
ai-real-estate-assistantAdvanced AI Real Estate Assistant using RAG, LLMs, and Python. Features market analysis, property valuation, and intelligent search.
alibabacloud-adb20211201Alibaba Cloud adb (20211201) SDK Library for Python
milvusMilvus is a high-performance, cloud-native vector database built for scalable vector ANN search