Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

adk-deepseek-adapter

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adk-deepseek-adapter

A DeepSeek LLM adapter for the Google Agent Development Kit (ADK)

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Google ADK DeepSeek Adapter

This package provides a DeepSeekLlm adapter for the Google Agent Development Kit (ADK). It allows you to use DeepSeek models (like deepseek-chat) seamlessly within your ADK agents.

Installation

npm install @adk/deepseek

Note: This package requires @google/adk as a sibling dependency.

Usage

import { LlmAgent } from '@google/adk';
import { DeepSeekLlm } from '@adk/deepseek';

const agent = new LlmAgent({
  name: 'my-agent',
  model: new DeepSeekLlm({
    apiKey: process.env.DEEPSEEK_API_KEY,
  }),
  instruction: 'You are a helpful assistant.',
});

Configuration

The DeepSeekLlm constructor accepts:

  • apiKey: (Required) Your DeepSeek API key.
  • model: (Optional) The model name (default: deepseek-chat).
  • baseUrl: (Optional) The API base URL (default: https://api.deepseek.com/v1).

Contribution

Contributions are welcome! Please read our CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.

License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.

Keywords

google-adk

FAQs

Package last updated on 23 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts