File size: 490 Bytes
09321b6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from enum import Enum


class AgentType(str, Enum):

    DEFAULT = 'default'
    """"""

    MS_AGENT = 'ms-agent'
    """An agent that uses the ModelScope-agent specific format does a reasoning step before acting .
    """

    MRKL = 'mrkl'
    """An agent that does a reasoning step before acting with mrkl"""

    REACT = 'react'
    """An agent that does a reasoning step before acting with react"""

    Messages = 'messages'
    """An agent optimized for using open AI functions."""