생각 중

사고 모델은 모델이 응답의 일부로 거치는 '사고 과정'을 생성하도록 학습됩니다. 따라서 사고 모델은 동등한 기본 모델보다 응답에서 더 강력한 추론 기능을 사용할 수 있습니다.

사고 사용

Gemini 2.5 Pro 실험용 모델은 Vertex AI에서 실험용 모델로 사용할 수 있습니다. 최신 Gemini 2.5 Pro Experimental 모델을 사용하려면 모델 드롭다운 메뉴에서 gemini-2.5-pro-exp-03-25 모델을 선택합니다.

Gen AI SDK for Python

설치

pip install --upgrade google-genai
자세한 내용은 SDK 참조 문서를 참고하세요.

Vertex AI에서 Gen AI SDK를 사용하도록 환경 변수를 설정합니다.

# Replace the `GOOGLE_CLOUD_PROJECT` and `GOOGLE_CLOUD_LOCATION` values
# with appropriate values for your project.
export GOOGLE_CLOUD_PROJECT=GOOGLE_CLOUD_PROJECT
export GOOGLE_CLOUD_LOCATION=us-central1
export GOOGLE_GENAI_USE_VERTEXAI=True

from google import genai

client = genai.Client()
response = client.models.generate_content(
    model="gemini-2.5-pro-exp-03-25",
    contents="solve x^2 + 4x + 4 = 0",
)
print(response.text)
# Example Response:
#     Okay, let's solve the quadratic equation x² + 4x + 4 = 0.
#
#     There are a few ways to solve this:
#
#     **Method 1: Factoring**
#
#     1.  **Look for two numbers** that multiply to the constant term (4) and add up to the coefficient of the x term (4).
#         *   The numbers are 2 and 2 (since 2 * 2 = 4 and 2 + 2 = 4).
#     2.  **Factor the quadratic** using these numbers:
#         (x + 2)(x + 2) = 0
#         This can also be written as:
#         (x + 2)² = 0
#     3.  **Set the factor equal to zero** and solve for x:
#         x + 2 = 0
#         x = -2
#
#     This type of solution, where the factor is repeated, is called a repeated root or a root with multiplicity 2.
#
#     **Method 2: Using the Quadratic Formula**
#
#     The quadratic formula solves for x in any equation of the form ax² + bx + c = 0:
#     x = [-b ± √(b² - 4ac)] / 2a
#
#     1.  **Identify a, b, and c** in the equation x² + 4x + 4 = 0:
#         *   a = 1
#         *   b = 4
#         *   c = 4
#     2.  **Substitute these values into the formula:**
#         x = [-4 ± √(4² - 4 * 1 * 4)] / (2 * 1)
#     3.  **Simplify:**
#         x = [-4 ± √(16 - 16)] / 2
#         x = [-4 ± √0] / 2
#         x = [-4 ± 0] / 2
#     4.  **Calculate the result:**
#         x = -4 / 2
#         x = -2
#
#     Both methods give the same solution.
#
#     **Answer:**
#     The solution to the equation x² + 4x + 4 = 0 is **x = -2**.

제한사항

Gemini 2.5 Pro Experimental은 실험용 모델이며 다음과 같은 제한사항이 있습니다.

  • 토큰 100만 개 입력 한도
  • 텍스트, 이미지, 오디오, 동영상 입력
  • 64k 토큰 출력 한도
  • 텍스트 전용 출력

다음 단계

Colab 노트북을 사용하여 Gemini 2.5 Pro 실험 버전을 직접 사용해 보거나 Vertex AI 콘솔을 열고 직접 모델에 프롬프트를 표시해 보세요.