Gemini を使用して PDF ファイルを要約する

このサンプルでは、Gemini を使用して PDF ファイルの要約を生成する方法を示します。

コードサンプル

Python

このサンプルを試す前に、Vertex AI クイックスタート: クライアント ライブラリの使用にある Python の設定手順を完了してください。 詳細については、Vertex AI Python API のリファレンス ドキュメントをご覧ください。

Vertex AI に対する認証を行うには、アプリケーションのデフォルト認証情報を設定します。詳細については、ローカル開発環境の認証を設定するをご覧ください。

import vertexai
from vertexai.generative_models import GenerativeModel, Part

# TODO (developer): update project id
vertexai.init(project=PROJECT_ID, location="us-central1")

model = GenerativeModel("gemini-1.5-flash-002")

contents = [
    # Text prompt
    "Summarise this file",
    # Example PDF document on Transformers, a neural network architecture.
    Part.from_uri(
        "https://storage.googleapis.com/cloud-samples-data/generative-ai/pdf/1706.03762v7.pdf",
        "application/pdf",
    ),
]

response = model.generate_content(contents)
print(response.text)
# Example response:
#     'This paper introduces the Transformer, a new neural network architecture for '
#     'sequence transduction, which uses an attention mechanism to learn global '
#     'dependencies between input and output sequences. The Transformer ...

次のステップ

他の Google Cloud プロダクトに関連するコードサンプルを検索およびフィルタするには、Google Cloud サンプル ブラウザをご覧ください。