Skip to content

Commit 50937c0

Browse files
committed
refactor: silence pylint warnings
1 parent e82ae80 commit 50937c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ai_eval/llm_services.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def get_response(self, model, api_key, messages, api_base, thread_id=None):
3636
"""
3737
raise NotImplementedError
3838

39-
# pylint: disable=too-many-positional-arguments
4039
def start_thread(self, model, api_key, messages, api_base):
4140
"""
4241
Start a new provider-side thread and return its first response.
@@ -60,6 +59,7 @@ def supports_threads(self) -> bool:
6059
return False
6160

6261

62+
# pylint: disable=abstract-method
6363
class DefaultLLMService(LLMServiceBase):
6464
"""
6565
Default llm service.
@@ -95,6 +95,7 @@ def supports_threads(self) -> bool: # pragma: nocover - default is stateless
9595
return False
9696

9797

98+
# pylint: disable=abstract-method
9899
class CustomLLMService(LLMServiceBase):
99100
"""
100101
Custom llm service.

0 commit comments

Comments
 (0)