From 1062f5b17eefe2255b2029d1bed8192242b40b7c Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 10 Apr 2026 14:45:44 +0800 Subject: [PATCH] bugfix --- llmage/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llmage/utils.py b/llmage/utils.py index e3dde1c..cce31cb 100644 --- a/llmage/utils.py +++ b/llmage/utils.py @@ -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):