Fix lint issue

This commit is contained in:
Andrii Lazarchuk
2024-10-28 17:05:38 +02:00
parent 478998bc27
commit 29bf41df4d
2 changed files with 7 additions and 4 deletions

View File

@@ -155,7 +155,11 @@ class LightRAG:
)
self.llm_model_func = limit_async_func_call(self.llm_model_max_async)(
partial(self.llm_model_func, hashing_kv=self.llm_response_cache, **self.llm_model_kwargs)
partial(
self.llm_model_func,
hashing_kv=self.llm_response_cache,
**self.llm_model_kwargs,
)
)
def insert(self, string_or_strings):