Skip to content

Commit 3394028

Browse files
sararobcopybara-github
authored andcommitted
feat: GenAI SDK client (prompt management): Release Prompts module to GA
PiperOrigin-RevId: 814685963
1 parent 56ea8a5 commit 3394028

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

vertexai/_genai/client.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,6 @@ def agent_engines(self):
110110
return self._agent_engines.AsyncAgentEngines(self._api_client)
111111

112112
@property
113-
@_common.experimental_warning(
114-
"The Vertex SDK GenAI async prompts module is experimental, "
115-
"and may change in future versions."
116-
)
117113
def prompts(self):
118114
if self._prompts is None:
119115
self._prompts = importlib.import_module(
@@ -211,10 +207,6 @@ def prompt_optimizer(self):
211207
return self._prompt_optimizer.PromptOptimizer(self._api_client)
212208

213209
@property
214-
@_common.experimental_warning(
215-
"The Vertex SDK GenAI async client is experimental, "
216-
"and may change in future versions."
217-
)
218210
def aio(self):
219211
return self._aio
220212

@@ -264,10 +256,6 @@ def agent_engines(self):
264256
return self._agent_engines.AgentEngines(self._api_client)
265257

266258
@property
267-
@_common.experimental_warning(
268-
"The Vertex SDK GenAI prompts module is experimental, "
269-
"and may change in future versions."
270-
)
271259
def prompts(self):
272260
if self._prompts is None:
273261
# Lazy loading the prompts module

0 commit comments

Comments
 (0)