mirror of
https://github.com/Xe138/AI-Trader.git
synced 2026-04-01 17:17:24 -04:00
fix: suppress unused parameter warnings in mock LangChain model
This commit is contained in:
@@ -62,6 +62,8 @@ class MockChatModel(BaseChatModel):
|
||||
Returns:
|
||||
ChatResult with mock AI response
|
||||
"""
|
||||
# Parameters are required by BaseChatModel interface but unused in mock
|
||||
_ = messages, stop, run_manager, kwargs
|
||||
response_text = self.provider.generate_response(self.date, self.step_counter)
|
||||
self.step_counter += 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user