Gemini용 Vertex AI API에 요청 보내기
프로그래밍 언어 SDK 또는 REST API를 사용하여 Vertex AI의 Gemini API에 요청을 전송하여 Google Cloud에서 생성형 AI 애플리케이션 빌드를 시작합니다.
Google Cloud 계정을 만들어 시작하기
이 빠른 시작을 사용하려면 Google Cloud 계정을 만들어야 합니다. 이 계정으로 $300의 무료 크레딧과 20개 이상의 제품을 무료로 사용할 수 있으며 $300 크레딧이 차감되지 않습니다.
무료로 시작하기계정이 생성된 후 Google Cloud에서 설정하는 방법에 대한 자세한 내용은 Google Cloud에서 설정을 참고하세요.
환경 설정
환경 설정 방법을 알아보려면 클릭
다음 탭 중 하나를 선택하여 환경을 설정하는 방법을 알아보세요.
Python
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, activate Cloud Shell.
At the bottom of the Google Cloud console, a Cloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
다음 명령어를 실행하여 Vertex AI SDK for Python을 설치하거나 업데이트합니다.
pip3 install --upgrade "google-cloud-aiplatform>=1.38"
Node.js
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, activate Cloud Shell.
At the bottom of the Google Cloud console, a Cloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
다음 명령어를 실행하여 Node.js용 Vertex AI SDK를 설치하거나 업데이트합니다.
npm install @google-cloud/vertexai
Java
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, activate Cloud Shell.
At the bottom of the Google Cloud console, a Cloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
-
google-cloud-vertexai
를 종속 항목으로 추가하려면 환경에 적절한 코드를 추가합니다.BOM이 있는 Maven
pom.xml
에 다음 HTML을 추가합니다.<dependencyManagement> <dependencies> <dependency> <groupId>com.google.cloud</groupId> <artifactId>libraries-bom</artifactId> <version>26.32.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-vertexai</artifactId> </dependency> </dependencies>
BOM이 없는 Maven
pom.xml
에 다음 HTML을 추가합니다.<dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-vertexai</artifactId> <version>0.4.0</version> </dependency>
Gradle without BOM
Add the following to your
build.gradle
implementation 'com.google.cloud:google-cloud-vertexai:0.4.0'
Go
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, activate Cloud Shell.
At the bottom of the Google Cloud console, a Cloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
사용 가능한 Vertex AI API Go 패키지를 검토하여 프로젝트 요구에 가장 적합한 패키지를 확인합니다.
패키지 cloud.google.com/go/vertexai (권장)
vertexai
는 일반적인 기능에 대한 액세스를 제공하는 인간이 작성한 패키지입니다.이 패키지는 Vertex AI API를 사용하여 빌드하는 대부분의 개발자에게 시작점으로 권장됩니다. 이 패키지에 아직 포함되지 않은 기능을 이용하려면 자동 생성된
aiplatform
을 사용하세요.패키지 cloud.google.com/go/aiplatform
aiplatform
은 자동 생성된 패키지입니다.이 패키지는 인간이 작성한
vertexai
패키지에서 아직 제공하지 않는 Vertex AI API 기능에 액세스해야 하는 프로젝트를 대상으로 합니다.
다음 명령어 중 하나를 실행하여 프로젝트 요구에 따라 원하는 Go 패키지를 설치합니다.
# Human authored package. Recommended for most developers. go get cloud.google.com/go/vertexai
# Auto-generated package. go get cloud.google.com/go/aiplatform
C#
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, activate Cloud Shell.
At the bottom of the Google Cloud console, a Cloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
REST
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Vertex AI and Cloud Storage APIs.
-
In the Google Cloud console, activate Cloud Shell.
At the bottom of the Google Cloud console, a Cloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.
- 다음을 입력하여 환경 변수를 구성합니다.
PROJECT_ID
를 Google Cloud 프로젝트의 ID로 바꿉니다.MODEL_ID="gemini-1.5-flash-002" PROJECT_ID="PROJECT_ID"
- 엔드포인트를 프로비저닝합니다.
gcloud beta services identity create --service=aiplatform.googleapis.com --project=${PROJECT_ID}
-
선택사항: Cloud Shell을 사용 중이며 Cloud Shell을 승인하라는 메시지가 표시되면 승인을 클릭합니다.
텍스트 전용 요청 전송
로컬 환경을 설정한 후 Vertex AI Gemini API에 텍스트 전용 요청을 보냅니다. 다음 샘플은 전문 꽃집의 가능한 이름 목록을 반환합니다.
Python
프롬프트 요청을 전송하려면 Python 파일(.py
)을 만들고 다음 코드를 파일에 복사합니다. PROJECT_ID
값을 Google Cloud 프로젝트의 ID로 설정합니다. 그런 다음 명령줄이나 IDE에서 Python 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
Node.js
프롬프트 요청을 전송하려면 Node.js 파일(.js
)을 만들고 다음 코드를 파일에 복사합니다. PROJECT_ID
를 Google Cloud 프로젝트의 ID로 바꿉니다. 그런 다음 명령줄 또는 IDE에서 JavaScript 파일을 실행하거나 적절한 경우 애플리케이션에 코드를 삽입합니다.
Java
프롬프트 요청을 전송하려면 Java 파일(.java
)을 만들고 다음 코드를 파일에 복사합니다. your-google-cloud-project-id
를 Google Cloud 프로젝트 ID로 설정합니다. 그런 다음 명령줄 또는 IDE에서 Java 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
Go
프롬프트 요청을 전송하려면 Go 파일(.go
)을 만들고 다음 코드를 파일에 복사합니다. projectID
를 Google Cloud 프로젝트의 ID로 바꿉니다. 그런 다음 명령줄 또는 IDE에서 Go 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
C#
프롬프트 요청을 전송하려면 C# 파일(.cs
)을 만들고 다음 코드를 파일에 복사합니다. your-project-id
를 Google Cloud 프로젝트 ID로 설정합니다. 그런 다음 명령줄 또는 IDE에서 C# 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
REST
Cloud Shell, 명령줄 또는 IDE에서 이 프롬프트 요청을 전송하거나 적절한 경우 REST 호출을 애플리케이션에 삽입할 수 있습니다.
curl -X POST \ -H "Authorization: Bearer $(gcloud auth print-access-token)" \ -H "Content-Type: application/json" \ https://us-central1-aiplatform.googleapis.com/v1/projects/${PROJECT_ID}/locations/us-central1/publishers/google/models/${MODEL_ID}:streamGenerateContent -d \ $'{ "contents": { "role": "user", "parts": [ { "text": "What\'s a good name for a flower shop that specializes in selling bouquets of dried flowers?" } ] } }'
이미지가 포함된 요청 전송
로컬 환경을 설정한 후 텍스트와 이미지가 포함된 요청을 Vertex AI Gemini API로 전송합니다. 다음 샘플은 제공된 이미지(Java 샘플용 이미지)의 설명을 반환합니다.
Python
프롬프트 요청을 전송하려면 Python 파일(.py
)을 만들고 다음 코드를 파일에 복사합니다. PROJECT_ID
값을 Google Cloud 프로젝트의 ID로 설정합니다. 그런 다음 명령줄이나 IDE에서 Python 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
Node.js
프롬프트 요청을 전송하려면 Node.js 파일(.js
)을 만들고 다음 코드를 파일에 복사합니다. PROJECT_ID
를 Google Cloud 프로젝트의 ID로 바꿉니다. 그런 다음 명령줄 또는 IDE에서 JavaScript 파일을 실행하거나 적절한 경우 애플리케이션에 코드를 삽입합니다.
Java
프롬프트 요청을 전송하려면 Java 파일(.java
)을 만들고 다음 코드를 파일에 복사합니다. your-google-cloud-project-id
를 Google Cloud 프로젝트 ID로 설정합니다. 그런 다음 명령줄 또는 IDE에서 Java 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
Go
프롬프트 요청을 전송하려면 Go 파일(.go
)을 만들고 다음 코드를 파일에 복사합니다. projectID
를 Google Cloud 프로젝트의 ID로 바꿉니다. 그런 다음 명령줄 또는 IDE에서 Go 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
C#
프롬프트 요청을 전송하려면 C# 파일(.cs
)을 만들고 다음 코드를 파일에 복사합니다. your-project-id
를 Google Cloud 프로젝트 ID로 설정합니다. 그런 다음 명령줄 또는 IDE에서 C# 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
REST
Cloud Shell, 명령줄 또는 IDE에서 이 프롬프트 요청을 전송하거나 적절한 경우 REST 호출을 애플리케이션에 삽입할 수 있습니다.
curl -X POST \ -H "Authorization: Bearer $(gcloud auth print-access-token)" \ -H "Content-Type: application/json" \ https://us-central1-aiplatform.googleapis.com/v1/projects/${PROJECT_ID}/locations/us-central1/publishers/google/models/${MODEL_ID}:streamGenerateContent -d \ $'{ "contents": { "role": "user", "parts": [ { "fileData": { "mimeType": "image/jpeg", "fileUri": "gs://generativeai-downloads/images/scones.jpg" } }, { "text": "Describe this picture." } ] } }'
모델이 응답을 반환합니다. 응답은 여러 섹션으로 생성되고, 안전을 위해 각 섹션이 개별적으로 평가됩니다.
오디오 및 동영상이 포함된 요청 전송
로컬 환경을 설정한 후 텍스트, 오디오, 동영상이 포함된 요청을 Vertex AI Gemini API로 전송합니다. 다음 샘플은 오디오 트랙의 중요한 항목을 포함하여 제공된 동영상에 관한 설명을 반환합니다.
Python
프롬프트 요청을 전송하려면 Python 파일(.py
)을 만들고 다음 코드를 파일에 복사합니다. PROJECT_ID
값을 Google Cloud 프로젝트의 ID로 설정합니다. 그런 다음 명령줄이나 IDE에서 Python 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
Node.js
프롬프트 요청을 전송하려면 Node.js 파일(.js
)을 만들고 다음 코드를 파일에 복사합니다. PROJECT_ID
를 Google Cloud 프로젝트의 ID로 바꿉니다. 그런 다음 명령줄 또는 IDE에서 JavaScript 파일을 실행하거나 적절한 경우 애플리케이션에 코드를 삽입합니다.
Java
프롬프트 요청을 전송하려면 Java 파일(.java
)을 만들고 다음 코드를 파일에 복사합니다. your-google-cloud-project-id
를 Google Cloud 프로젝트 ID로 설정합니다. 그런 다음 명령줄 또는 IDE에서 Java 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
Go
프롬프트 요청을 전송하려면 Go 파일(.go
)을 만들고 다음 코드를 파일에 복사합니다. projectID
를 Google Cloud 프로젝트의 ID로 바꿉니다. 그런 다음 명령줄 또는 IDE에서 Go 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
C#
프롬프트 요청을 전송하려면 C# 파일(.cs
)을 만들고 다음 코드를 파일에 복사합니다. your-project-id
를 Google Cloud 프로젝트 ID로 설정합니다. 그런 다음 명령줄 또는 IDE에서 C# 파일을 실행하거나 적절한 경우 코드를 애플리케이션에 삽입합니다.
REST
Cloud Shell, 명령줄 또는 IDE에서 이 프롬프트 요청을 전송하거나 적절한 경우 REST 호출을 애플리케이션에 삽입할 수 있습니다.
curl -X POST \ -H "Authorization: Bearer $(gcloud auth print-access-token)" \ -H "Content-Type: application/json" \ https://us-central1-aiplatform.googleapis.com/v1/projects/${PROJECT_ID}/locations/us-central1/publishers/google/models/${MODEL_ID}:streamGenerateContent -d \ $'{ "contents": { "role": "user", "parts": [ { "fileData": { "mimeType": "video/mp4", "fileUri": "gs://cloud-samples-data/generative-ai/video/pixel8.mp4" } }, { "text": "Provide a description of the video. The description should also contain anything important which people say in the video." } ] } }'
모델이 응답을 반환합니다. 응답은 여러 섹션으로 생성되고, 안전을 위해 각 섹션이 개별적으로 평가됩니다.
다음 단계
- Vertex AI의 Gemini API에 대해 자세히 알아보세요.
- Python, Node.js, Java, Go 또는 C#의 Vertex AI Gemini API SDK 참조를 살펴보세요.
- Vertex AI의 Gemini용 Model API를 참고하세요.
- OpenAI 라이브러리를 사용하여 Vertex AI 모델 호출에 대해 알아보세요.