You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
langgraph-cli 0.1.60
Summary of Changes
Added support for vector store configuration through langgraph-cli with embedding specifications, enabling semantic search capabilities in LangGraph projects #2540
Enhanced Docker configuration to support store settings when deploying containerized LangGraph applications #2540
Added python-dotenv as an optional dependency for better environment variable management #2540
Updated dependencies including langgraph-api (0.0.5) and langgraph-checkpoint (2.0.7) #2540
Reorganized CLI command structure for better code organization #2548
Detailed Changes
Store Configuration Support
Added new configuration types IndexConfig and StoreConfig to handle vector embeddings setup #2540
Provided comprehensive documentation for embedding dimensions and model configuration options #2540
Configuration now supports specifying:
Embedding dimensions (dims)
Embedding model selection (embed)
Custom field selection for text extraction (fields)
CLI Dev Command
Enhanced the dev command to pass store configuration from config.json to the LangGraph server #2540
Added support for passing additional configuration through environment variables in Docker containers #2540
Dependencies
Updated to langgraph-api 0.0.5, which improves API compatibility #2540
Added python-dotenv as an optional dependency for better environment variable management in projects #2540
Updated several core dependencies including langchain-core, pydantic, and watchfiles for better performance and compatibility #2540