Skip to content

Commit 08fb530

Browse files
Code cleaning
1 parent cac79ae commit 08fb530

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/sdialog/agents.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,10 @@ def tokenizer(self):
282282
pass
283283
return None
284284

285-
def __call__(self, utterance: Union[str, List[BaseMessage]] = "", return_events: bool = False, current_dialog: Dialog = None) -> str:
285+
def __call__(self,
286+
utterance: Union[str, List[BaseMessage]] = "",
287+
return_events: bool = False,
288+
current_dialog: Dialog = None) -> str:
286289
"""
287290
Processes an input utterance and generates a response.
288291

src/sdialog/orchestrators/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
from typing import List
1111
from abc import ABC, abstractmethod
12-
from langchain_core.messages import SystemMessage, AIMessage
1312

1413
from .. import Turn
1514
from ..util import make_serializable

0 commit comments

Comments
 (0)