From 9261599ab92aa8cc39c1e34aa431cf257f25dce2 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 10 Sep 2024 18:52:43 -0700 Subject: [PATCH] add doc string to vertex llm base --- .../llms/vertex_ai_and_google_ai_studio/vertex_llm_base.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/litellm/llms/vertex_ai_and_google_ai_studio/vertex_llm_base.py b/litellm/llms/vertex_ai_and_google_ai_studio/vertex_llm_base.py index 55c7388d4..195b29436 100644 --- a/litellm/llms/vertex_ai_and_google_ai_studio/vertex_llm_base.py +++ b/litellm/llms/vertex_ai_and_google_ai_studio/vertex_llm_base.py @@ -1,3 +1,9 @@ +""" +Base Vertex, Google AI Studio LLM Class + +Handles Authentication and generating request urls for Vertex AI and Google AI Studio +""" + import json import os from typing import TYPE_CHECKING, Any, Dict, Literal, Optional, Tuple