mirror of
https://github.com/mii443/rust-genai.git
synced 2025-08-22 16:25:27 +00:00
. update version to v0.1.17
This commit is contained in:
@ -1,10 +1,13 @@
|
|||||||
`.` minor | `-` Fix | `+` Addition | `^` improvement | `!` Change | `*` Refactor
|
`.` minor | `-` Fix | `+` Addition | `^` improvement | `!` Change | `*` Refactor
|
||||||
|
|
||||||
> **IMPORTANT:** `0.1.x` will still have some breaking changes in patches.
|
> **IMPORTANT:** `0.1.x` will still have some breaking changes in patches.
|
||||||
> - Make sure to **lock** your version, e.g., `genai = "=0.1.16"`.
|
> - Make sure to **lock** your version, e.g., `genai = "=0.1.17"`.
|
||||||
> - Version `0.2.x` will follow semver more strictly.
|
> - Version `0.2.x` will follow semver more strictly.
|
||||||
> - API changes will be denoted as "`!` - **API CHANGE** ...."
|
> - API changes will be denoted as "`!` - **API CHANGE** ...."
|
||||||
|
|
||||||
|
## 2025-01-06 - [v0.1.17](https://github.com/jeremychone/rust-genai/compare/v0.1.16...v0.1.17)
|
||||||
|
|
||||||
|
- `+` AI Provider - Added DeepSeek
|
||||||
|
|
||||||
## 2025-01-02 - [v0.1.16](https://github.com/jeremychone/rust-genai/compare/v0.1.15...v0.1.16)
|
## 2025-01-02 - [v0.1.16](https://github.com/jeremychone/rust-genai/compare/v0.1.15...v0.1.16)
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "genai"
|
name = "genai"
|
||||||
version = "0.1.17-WIP"
|
version = "0.1.17"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.79"
|
rust-version = "1.79"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -12,14 +12,14 @@ Currently supports natively: **Ollama**, **OpenAI**, **Anthropic**, **groq**, **
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
# cargo.toml
|
# cargo.toml
|
||||||
genai = "=0.1.16" # Version lock for `0.1.x`
|
genai = "=0.1.17" # Version lock for `0.1.x`
|
||||||
```
|
```
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
Provides a common and ergonomic single API to many generative AI Providers, such as Anthropic, OpenAI, Gemini, xAI, Ollama, Groq, ....
|
Provides a common and ergonomic single API to many generative AI Providers, such as Anthropic, OpenAI, Gemini, xAI, Ollama, Groq, ....
|
||||||
|
|
||||||
- **IMPORTANT 1** `0.1.x` will still have some breaking changes in patches, so make sure to **lock** your version, e.g., `genai = "=0.1.16"`. In short, `0.1.x` can be considered "beta releases." Version `0.2.x` will follow semver more strictly.
|
- **IMPORTANT 1** `0.1.x` will still have some breaking changes in patches, so make sure to **lock** your version, e.g., `genai = "=0.1.17"`. In short, `0.1.x` can be considered "beta releases." Version `0.2.x` will follow semver more strictly.
|
||||||
|
|
||||||
- **IMPORTANT 2** `genai` is focused on normalizing chat completion APIs across AI providers and is not intended to be a full representation of a given AI provider. For this, there are excellent libraries such as [async-openai](https://crates.io/search?q=async-openai) for OpenAI and [ollama-rs](https://crates.io/crates/ollama-rs) for Ollama.
|
- **IMPORTANT 2** `genai` is focused on normalizing chat completion APIs across AI providers and is not intended to be a full representation of a given AI provider. For this, there are excellent libraries such as [async-openai](https://crates.io/search?q=async-openai) for OpenAI and [ollama-rs](https://crates.io/crates/ollama-rs) for Ollama.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user