批量生成函数注释

This commit is contained in:
Your Name
2023-03-24 16:14:25 +08:00
parent c19419e1fb
commit ba2dd3d0ff
20 changed files with 1744 additions and 2 deletions

View File

@ -13,7 +13,7 @@ def write_results_to_file(history, file_name=None):
if i%2==0: f.write('## ')
f.write(content)
f.write('\n\n')
res ='以上材料已经被写入', f'./gpt_log/{file_name}'
res = '以上材料已经被写入' + os.path.abspath(f'./gpt_log/{file_name}')
print(res)
return res