AI
[릴리즈노트] 구글 Gemini 2.5 Flash 소개: 추론 강화, 속도·비용 우선시
6분
2025.04.18.3.8K
※ 본문은 구글의 <Start building with Gemini 2.5 Flash>를 신속하게 전달하기 위해 AI 번역 및 요약을 사용했습니다. 일부 문장에 오역이나 부자연스러운 표현이 있을 수 있으니 참고하시기 바랍니다.
모델은 주어진 프롬프트의 복잡도를 스스로 판단해 적절한 만큼만 ‘생각’하도록 훈련되었습니다.
evaluate_cells(cells: Dict[str, str]) -> Dict[str, float]
함수를 작성하세요."3"
) 또는 "=A1 + B1 * 2"
형태의 수식 사용ValueError("Cycle detected at <cell>")
발생eval()
미사용
thinking_budget
파라미터를 설정하여, 제어 가능한 추론이 복잡한 문제 해결에 어떤 도움을 주는지 직접 경험해 보길 권장.
from google import genaiclient = genai.Client(api_key="GEMINI_API_KEY")response = client.models.generate_content( model="gemini-2.5-flash-preview-04-17", contents="You roll two dice. What's the probability they add up to 7?", config=genai.types.GenerateContentConfig( thinking_config=genai.types.ThinkingConfig( thinking_budget=1024 ) ))print(response.text)
<원문>
Start building with Gemini 2.5 Flash
©위 번역글의 원 저작권은 Google에 있으며, 저작권법의 보호를 받는 바, 무단 전재와 복사, 배포 등을 금합니다.