代码在各个方面都有效,但是终端和 output.txt 中的输出都被截断为大约 200 个字,是预期的一半。回应结束了半句。 谁能帮助理解出了什么问题?
谢谢
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。 尝试增加最大字符数。