python中还有其他加载json的函数吗

问题描述 投票:0回答:1
import json

response_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 message
content = response_message['choices'][0]['message']['content']

# Remove the "etc text" from the content
cleaned_content = content.split("{\n" ,1)[1]
cleaned_content = cleaned_content.split('}\n',1)[0] + '}'
cleaned_content = '{\n' + cleaned_content

content_json = json.loads(cleaned_content)

print(content_json)

只想要一个没有错误的代码 json.loads() 给出错误有人可以解释吗 我在谷歌上搜索,但那里告诉我添加 r"" 但如何解决这个错误?

python json python-requests
1个回答
0
投票

您可以在 json.loads(cleaned_content) 之前添加

print(cleaned_content)
语句。您会注意到它缺少两个右大括号
"}"
,这就是 JSON 解析导致错误的原因。

© www.soinside.com 2019 - 2024. All rights reserved.