Skip to content

Latest commit

 

History

History
46 lines (41 loc) · 2.34 KB

README.md

File metadata and controls

46 lines (41 loc) · 2.34 KB

MIT License Golang

Deepseek API Golang Client Library

Client for Deepseek API

English | 中文 | Русский

Installation

go get github.com/rvinnie/deepseek-sdk-go

Getting Started

  1. Import the module
import "github.com/rvinnie/deepseek-sdk-go/deepseek"
  1. Create a Deepseek API client
import "github.com/rvinnie/deepseek-sdk-go/deepseek"

func main() {
    client, err := deepseek.NewClient("API_TOKEN")
    if err != nil { 
       // Handle error
    }
}
  1. Call the desired API method. See Deepseek API documentation

SDK Usage Examples