Skip to content

Google ADK (TypeScript)

TypeScript port of Google ADK. Currently in active development — the same architecture as the Python and Go versions, adapted for Node.

Install

Terminal window
npm install @google/adk

Version

v1.0.0 · April 2026 · Node 18+

Best for

Full-stack Gemini agents, Node backends, browser-compatible flows.

import { LlmAgent } from '@google/adk';
const agent = new LlmAgent({
name: 'assistant',
model: 'gemini-2.0-flash-exp',
instruction: 'You are a helpful assistant.',
});
const response = await agent.run('What is 15 + 27?');
console.log(response.text);

DateVersionChanges
2026-04-211.0.0Bumped to installed v1.0.0 GA after npm introspection; LLMAgent → LlmAgent (matches Python casing).
2026-04-210.6.1Index redesigned with language-selector style.
April 4, 20260.6.1Active development release.

Other languages: Python · Go.