8 lines
266 B
Python
8 lines
266 B
Python
|
class DialogueStrategy:
|
||
|
@staticmethod
|
||
|
def decide_response(state: dict) -> str:
|
||
|
if state['last_intent'] == 'ask_name':
|
||
|
return "Witaj, nazywam się Dia."
|
||
|
else:
|
||
|
return "Przepraszam, nie rozumiem. Możesz to powtórzyć?"
|