Skip to main content

DeepSeek Provider

Use DeepSeek’s models including DeepSeek Chat and DeepSeek Reasoner.

Environment Variables

export DEEPSEEK_API_KEY=...

Supported Modalities

ModalitySupported
Text/Chat
Tools

Quick Start

1

Simple Usage

import { Agent } from 'praisonai';

const agent = new Agent({
  name: 'DeepSeekAgent',
  instructions: 'You are a helpful assistant.',
  llm: 'deepseek/deepseek-chat'
});

const response = await agent.chat('Hello!');
2

With Configuration

Adjust provider credentials and model settings for production — see the sections above.

Available Models

ModelDescription
deepseek-chatGeneral chat
deepseek-reasonerReasoning model

DeepSeek CLI Usage

DeepSeek CLI Usage