5 lines
114 B
Python
5 lines
114 B
Python
class NaturalLanguageGenerator:
|
|
@staticmethod
|
|
def generate(response: str) -> str:
|
|
return response
|