Memuat atau mengambil perintah

Contoh ini menunjukkan cara memuat atau mengambil perintah yang telah disimpan ke resource online.

Contoh kode

Python

Sebelum mencoba contoh ini, ikuti petunjuk penyiapan Python di Panduan memulai Vertex AI menggunakan library klien. Untuk mengetahui informasi selengkapnya, lihat Dokumentasi referensi API Python Vertex AI.

Untuk melakukan autentikasi ke Vertex AI, siapkan Kredensial Default Aplikasi. Untuk mengetahui informasi selengkapnya, baca Menyiapkan autentikasi untuk lingkungan pengembangan lokal.

import vertexai
from vertexai.preview.prompts import Prompt
from vertexai.preview import prompts

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

# Create local Prompt
prompt = Prompt(
    prompt_name="meteorologist",
    prompt_data="How should I dress for weather in August?",
    model_name="gemini-1.5-pro-002",
    system_instruction="You are a meteorologist. Answer in a short sentence.",

)
# Save Prompt to online resource.
prompt1 = prompts.create_version(prompt=prompt)
prompt_id = prompt1.prompt_id

# Get prompt
get_prompt = prompts.get(prompt_id=prompt_id)

print(get_prompt)

# Example response
# How should I dress for weather in August?

Langkah selanjutnya

Untuk menelusuri dan memfilter contoh kode untuk produk Google Cloud lainnya, lihat Google Cloud browser contoh.