聊天机器人:打印(响应)在终端打印不完整的响应;

问题描述 投票:0回答:0

代码在各个方面都有效,但是终端和 output.txt 中的输出都被截断为大约 200 个字,是预期的一半。回应结束了半句。 谁能帮助理解出了什么问题?

谢谢

从您保存的 index.json 文件加载索引

index = GPTSimpleVectorIndex.load_from_disk('index.json')

查询索引

response = index.query("itchy eyes remedies in 400 words")


print(response)


if not os.path.exists('output.txt'):
    open('output.txt', 'w').close()

with open('output.txt', 'w') as f:
    f.write(str(response))

尝试更改为 response.text,response.content。 尝试增加最大字符数。

python output response chatbot truncated
© www.soinside.com 2019 - 2024. All rights reserved.