Newer
Older
from typing import List, Dict
class DummyResponseAgent(object):
def __init__(self):
""" Load your model(s) here """
pass
def generate_responses(self, test_data: List[Dict]) -> List[str]:
"""
You will be provided with a batch of upto 50 independent conversations
Return a string for every conversation
"""
return ["THIS IS A TEST REPLY" for _ in test_data]