Skip to content
Snippets Groups Projects
dummy_agent.py 423 B
Newer Older
Dipam Chakraborty's avatar
Dipam Chakraborty committed
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]