Google ADK
Google ADK (Agent Development Kit)
Google ADK는 정교한 AI 에이전트를 구축·평가·배포하기 위한 오픈소스, 코드 우선 Python 프레임워크예요. Gemini에 최적화되어 있지만 모델에 구애받지 않으며, 100개 이상의 프로바이더를 사용할 수 있도록 LiteLLM을 지원해요.
출처: 문서
본문
Google ADK는 정교한 AI 에이전트를 구축·평가·배포하기 위한 오픈소스, 코드 우선(code-first) Python 프레임워크예요. Gemini에 최적화되어 있지만 모델에 구애받지 않으며(model-agnostic), 100개 이상의 프로바이더를 사용할 수 있도록 LiteLLM을 지원해요.
from google.adk.agents.llm_agent import Agent
from google.adk.models.lite_llm import LiteLlm
root_agent = Agent(
model=LiteLlm(model="openai/gpt-5.6-terra"), # Or any LiteLLM-supported model
name="my_agent",
description="An agent using LiteLLM",
instruction="You are a helpful assistant.",
tools=[your_tools],
)