Skip to content

Commit

Permalink
Change SDK to GA instead of preview
Browse files Browse the repository at this point in the history
  • Loading branch information
gquental committed Oct 15, 2024
1 parent 55563c8 commit baf3dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vanna/google/gemini_chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, config=None):
self.chat_model = genai.GenerativeModel(model_name)
else:
# Authenticate using VertexAI
from vertexai.preview.generative_models import GenerativeModel
from vertexai.generative_models import GenerativeModel
self.chat_model = GenerativeModel(model_name)

def system_message(self, message: str) -> any:
Expand Down

0 comments on commit baf3dbe

Please sign in to comment.