-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,23 +5,21 @@ | |
|
||
Deepseek-Go is a Go-based API wrapper for the [Deepseek](https://deepseek.com) platform. It provides a clean and type-safe interface to interact with Deepseek's AI features, including chat completions with streaming, token usage tracking, and more. | ||
|
||
This library is designed for developers building Go applications that require seamless integration with Deepseek AI. | ||
|
||
The recent gain in popularity and cybersecurity issues Deepseek has seen makes for many problems while using the API. Please refer to the [status](https://status.deepseek.com/) page for the current status. | ||
## Installation | ||
|
||
```sh | ||
go get github.com/cohesion-org/[email protected] | ||
``` | ||
deepseek-go currently uses `go 1.23.3` | ||
|
||
## Features | ||
|
||
- **Chat Completion**: Easily send chat messages and receive responses from Deepseek's AI models. It also supports streaming. | ||
- **Modular Design**: The library is structured into reusable components for building, sending, and handling requests and responses. | ||
- **MIT License**: Open-source and free for both personal and commercial use. | ||
|
||
## Installation | ||
|
||
To use Deepseek-Go, ensure you have Go installed, and run: | ||
|
||
```sh | ||
go get github.com/cohesion-org/[email protected] | ||
``` | ||
The recent gain in popularity and cybersecurity issues Deepseek has seen makes for many problems while using the API. Please refer to the [status](https://status.deepseek.com/) page for the current status. | ||
|
||
## Getting Started | ||
|
||
|