-
Beta Was this translation helpful? Give feedback.
Answered by
hinthornw
Apr 21, 2025
Replies: 1 comment 3 replies
-
What is your question? LangGraph dev implements the LangGraph api. It's a dev server for the LangGraph api. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello! The exception is saying that it already has an in-memory store that's injected and managed by the server, so simply omitting that store you're trying to add will solve your problem. That's what that message is saying! It does NOT say that you need to add a postgres store!
When you run
langgraph dev
, the server includes a version of the InMemoryStore in your graph. If you provide an additional one, that additional one is ignored. The reason this exception is thrown is similar to adding a linter in code during development is to communicate this (it's mentioned a few places in the docs as well, but it's not uncommon to skip the docs and jump right into building. That's great!) It is o…