Skip to content

template_types

arai_ai_agents.utils.template_types

TemplateType

This class is used to define the type of template.

Attributes:

Name Type Description
AGENT str

the type of template for an agent

SEASON str

the type of template for a season

EPISODE str

the type of template for an episode

PROFILE_PICTURE str

the type of template for a profile picture

Source code in arai_ai_agents/utils/template_types.py
class TemplateType:
    """This class is used to define the type of template.

    Attributes:
        AGENT (str): the type of template for an agent
        SEASON (str): the type of template for a season
        EPISODE (str): the type of template for an episode
        PROFILE_PICTURE (str): the type of template for a profile picture
    """
    AGENT = "agent"
    SEASON = "season"
    EPISODE = "episode"
    PROFILE_PICTURE = "profile_picture"