List all prompts

This code sample demonstrates how to list all prompts in a Google Cloud Project.

Code sample

Python

Before trying this sample, follow the Python setup instructions in the Vertex AI quickstart using client libraries. For more information, see the Vertex AI Python API reference documentation.

To authenticate to Vertex AI, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

import vertexai
from vertexai.preview import prompts

# Initialize vertexai
vertexai.init(project=PROJECT_ID, location="us-central1")

# Get prompt a prompt from list
list_prompts_metadata = prompts.list()

print(list_prompts_metadata)

# Example Response:
# [PromptMetadata(display_name='movie-critic', prompt_id='12345678910'), PromptMetadata(display_name='movie-critic-2', prompt_id='12345678910'

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.