We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8eec21 commit a2778baCopy full SHA for a2778ba
vertexai/extensions/_extensions.py
@@ -13,7 +13,6 @@
13
# See the License for the specific language governing permissions and
14
# limitations under the License.
15
#
16
-import immutabledict
17
import json
18
from typing import Optional, Sequence, Union
19
@@ -32,7 +31,7 @@
32
31
_RuntimeConfigOrJson = Union[_utils.JsonDict, types.RuntimeConfig]
33
34
35
-_VERTEX_EXTENSION_HUB = immutabledict.immutabledict({
+_VERTEX_EXTENSION_HUB = {
36
"code_interpreter": {
37
"display_name": "Code Interpreter",
38
"description": (
@@ -69,7 +68,7 @@
69
68
},
70
71
72
-})
+}
73
74
75
class Extension(base.VertexAiResourceNounWithFutureManager):
0 commit comments