TypeError : Type is not serializable: ObjectId #463
-
This is the error i'm getting for calling any methods after running the langserve server Error: The above exception was the direct cause of the following exception: Traceback (most recent call last): I've tried other basic templates too, but the error is constant. At present i'm using rag-conversation. Extra Info : I'm using MongoDB Atlas vector search as a retriever. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
LangServe can't serialize arbitrary things into JSON -- either remove the ObjectId from the response or convert into a JSON serializable value and things will work |
Beta Was this translation helpful? Give feedback.
LangServe can't serialize arbitrary things into JSON -- either remove the ObjectId from the response or convert into a JSON serializable value and things will work