This commit is contained in:
yumoqing 2026-02-12 13:49:52 +08:00
parent 27f7dc087a
commit 24ae223886

View File

@ -32,7 +32,7 @@ class LLMHandler:
}
kw = DictObject(**kw)
txt = ''
async for d in env.inference_generator(self, self.request, params_kw=kw):
async for d in env.inference_generator(self.request, params_kw=kw):
debug(f'{d=}, {type(d)=}')
txt += d.content
return txt