@@ -48,7 +48,6 @@ def init(
4848 id : str ,
4949 title : str ,
5050 token : str ,
51- description : Optional [str ] = None ,
5251 provider : Optional [str ] = None ,
5352 base_url : Optional [str ] = None ,
5453 llm_organization : Optional [str ] = None ,
@@ -59,7 +58,6 @@ def init(
5958 attributes = CatalogLlmEndpointAttributes (
6059 title = title ,
6160 token = token ,
62- description = description ,
6361 provider = provider ,
6462 base_url = base_url ,
6563 llm_organization = llm_organization ,
@@ -73,7 +71,6 @@ def from_api(cls, entity: dict[str, Any]) -> CatalogLlmEndpoint:
7371 attr = CatalogLlmEndpointAttributes (
7472 title = safeget (ea , ["title" ]),
7573 token = "" , # Token is not returned for security reasons
76- description = safeget (ea , ["description" ]),
7774 provider = safeget (ea , ["provider" ]),
7875 base_url = safeget (ea , ["baseUrl" ]),
7976 llm_organization = safeget (ea , ["llmOrganization" ]),
@@ -100,7 +97,6 @@ def init(
10097 id : str ,
10198 title : Optional [str ] = None ,
10299 token : Optional [str ] = None ,
103- description : Optional [str ] = None ,
104100 provider : Optional [str ] = None ,
105101 base_url : Optional [str ] = None ,
106102 llm_organization : Optional [str ] = None ,
@@ -111,7 +107,6 @@ def init(
111107 attributes = CatalogLlmEndpointPatchAttributes (
112108 title = title ,
113109 token = token ,
114- description = description ,
115110 provider = provider ,
116111 base_url = base_url ,
117112 llm_organization = llm_organization ,
@@ -124,7 +119,6 @@ def init(
124119class CatalogLlmEndpointAttributes (Base ):
125120 title : str
126121 token : str
127- description : Optional [str ] = None
128122 provider : Optional [str ] = None
129123 base_url : Optional [str ] = None
130124 llm_organization : Optional [str ] = None
@@ -139,7 +133,6 @@ def client_class() -> type[JsonApiLlmEndpointInAttributes]:
139133class CatalogLlmEndpointPatchAttributes (Base ):
140134 title : Optional [str ] = None
141135 token : Optional [str ] = None
142- description : Optional [str ] = None
143136 provider : Optional [str ] = None
144137 base_url : Optional [str ] = None
145138 llm_organization : Optional [str ] = None
0 commit comments