import jsonresponse_message = {'id': 'chatcmpl-9Iof6Uwf74o9N6uKsyxIVMFFIDJYC','object': 'chat.completion','created': 1714271676,'model': 'gpt-3.5-turbo-0125','choices': [ {'index': 0,'message': {'role': 'assistant','content': 'sfsdfs {\n "plant": {\n "light blocker": 1,\n "give water": 0,\n "spray water": 0,\n "conditions": {\n "humidity (%)": 56.78,\n "temperature (C)": 23.45,\n "light": 1,\n "soil moisture": 654\n }\n}\netc text \n}' },'logprobs': None,'finish_reason': 'stop' } ],'usage': {'prompt_tokens': 225,'completion_tokens': 78,'total_tokens': 303 },'system_fingerprint': 'fp_3b956da36b'}# Extracting the content from the messagecontent = response_message['choices'][0]['message']['content']# Remove the "etc text" from the contentcleaned_content = content.split("{\n" ,1)[1]cleaned_content = cleaned_content.split('}\n',1)[0] +'}'cleaned_content = '{\n'+ cleaned_contentcontent_json = json.loads(cleaned_content)print(content_json)just want a code without errorjson.loads() giving error can someone explaini searched on google but there telling to add r""but how can solve this error?