skip to Main Content

c# JsonConvert.SerializeObject is updating the date

I am trying to remove all indentation from my json : "date": { "start": "2020-10-23T15:30:00+00:00" } I tried with this var freeContent = JsonConvert.SerializeObject(JsonConvert.DeserializeObject(content)); But I got "date": {"start": "2020-10-23T13:30:00+00:00"} As you can see, the date is modified while I…

VIEW QUESTION

RuntimeError: no validator found for <class 'langchain_community.tools.json.tool.JsonSpec'>, see `arbitrary_types_allowed` in Config

I am getting RuntimeError: no validator found for <class 'langchain_community.tools.json.tool.JsonSpec'>, see arbitrary_types_allowed in Config even after to installing import yaml from langchain_community.agent_toolkits import JsonToolkit, create_json_agent from langchain_community.tools.json.tool import JsonSpec from langchain_openai import OpenAI

VIEW QUESTION
Back To Top
Search