Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions aixplain/enums/function_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,10 @@ class FunctionType(Enum):
UTILITY (str): Utility function type.
METRIC (str): Metric/evaluation function type.
SEARCH (str): Search function type.
INTEGRATION (str): Integration connector function type.
CONNECTION (str): Connection function type.
INTEGRATION (str): Integration connector function type. # i.e. slack
CONNECTION (str): Connection function type. # slack - action
MCP_CONNECTION (str): MCP connection function type.
MCPSERVER (str): MCP server function type.
MCPSERVERSAS (str): MCP server sas function type
MCPSERVER (str): MCP server is for on-prem solution. It should be treated like a model. # ONPREM_MCP_MODEL
"""
AI = "ai"
SEGMENTOR = "segmentor"
Expand All @@ -54,4 +53,3 @@ class FunctionType(Enum):
CONNECTION = "connection"
MCP_CONNECTION = "mcpconnection"
MCPSERVER = "mcpserver"
MCPSERVERSAS = "mcpserversas"