mephisto.abstractions.blueprints.parlai_chat.parlai_not_installed

View Source
#!/usr/bin/env python3

# Copyright (c) Meta Platforms and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.


class ParlAIAgent:
    def __init__(self, *args, **kwargs):
        raise NotImplementedError("You need to install ParlAI to use this blueprint")


class Message:
    def __init__(self, *args, **kwargs):
        raise NotImplementedError("You need to install ParlAI to use this blueprint")
#   class ParlAIAgent:
View Source
class ParlAIAgent:
    def __init__(self, *args, **kwargs):
        raise NotImplementedError("You need to install ParlAI to use this blueprint")
#   ParlAIAgent(*args, **kwargs)
View Source
    def __init__(self, *args, **kwargs):
        raise NotImplementedError("You need to install ParlAI to use this blueprint")
#   class Message:
View Source
class Message:
    def __init__(self, *args, **kwargs):
        raise NotImplementedError("You need to install ParlAI to use this blueprint")
#   Message(*args, **kwargs)
View Source
    def __init__(self, *args, **kwargs):
        raise NotImplementedError("You need to install ParlAI to use this blueprint")