Updated clients, include vastai-sdk, handle non-UTF-8

This commit is contained in:
Lucas Armand
2025-11-11 17:09:28 -08:00
parent 7db54f3bd7
commit b55bfa9611
6 changed files with 441 additions and 701 deletions
+1 -1
View File
@@ -417,7 +417,7 @@ class Backend:
async def tail_log():
log.debug(f"tailing file: {self.model_log_file}")
async with await open_file(self.model_log_file) as f:
async with await open_file(self.model_log_file, encoding='utf-8', errors='ignore'):
while True:
line = await f.readline()
if line: