This commit is contained in:
yumoqing 2026-04-10 14:45:44 +08:00
parent 3d0080e3b8
commit 1062f5b17e

View File

@ -35,7 +35,7 @@ async def read_webpath(webpath):
fs = FileStorage()
p = fs.realPath(webpath)
async with aiofiles.open(p,'rb') as f:
bin = f.read()
bin = await f.read()
return bin
async def write_llmio(luid, io_dic):