From 77be73490bbce16a7b1341c557a0745e28b64c5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20G=C3=BCnd=C3=BCz?= Date: Wed, 13 Aug 2025 19:04:23 +0300 Subject: [PATCH] Update function_type.py --- aixplain/enums/function_type.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/aixplain/enums/function_type.py b/aixplain/enums/function_type.py index f48f7f95..9cfa9a32 100644 --- a/aixplain/enums/function_type.py +++ b/aixplain/enums/function_type.py @@ -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" @@ -54,4 +53,3 @@ class FunctionType(Enum): CONNECTION = "connection" MCP_CONNECTION = "mcpconnection" MCPSERVER = "mcpserver" - MCPSERVERSAS = "mcpserversas"