Skip to content

Commit

Permalink
Release: 0.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
guywaldman committed Jul 23, 2024
1 parent 4897936 commit abcc595
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# Version 0.0.15

- Removed dimensions from the OpenAI embedding model (no such requirements, compared to Ollama)

# Version 0.0.14

- Added `LangaugeModelProvider::is_local` method
Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orch"
version = "0.0.14"
version = "0.0.15"
edition = "2021"
license = "MIT"
description = "Language model orchestration library"
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/guywaldman/orch"
keywords = ["llm", "openai", "ollama", "rust"]

[dependencies]
orch_response = { path = "../response", version = "0.0.14" }
orch_response_derive = { path = "../response_derive", version = "0.0.14" }
orch_response = { path = "../response", version = "0.0.15" }
orch_response_derive = { path = "../response_derive", version = "0.0.15" }
async-gen = "0.2.3"
dotenv = "0.15.0"
openai-api-rs = "5.0.2"
Expand Down
2 changes: 1 addition & 1 deletion response/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orch_response"
version = "0.0.14"
version = "0.0.15"
edition = "2021"
license = "MIT"
description = "Models for orch Executor responses"
Expand Down
4 changes: 2 additions & 2 deletions response_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orch_response_derive"
version = "0.0.14"
version = "0.0.15"
edition = "2021"
license = "MIT"
description = "Derive macros for orch Executor responses"
Expand All @@ -12,7 +12,7 @@ keywords = ["llm", "openai", "ollama", "rust"]
proc-macro = true

[dependencies]
orch_response = { path = "../response", version = "0.0.14" }
orch_response = { path = "../response", version = "0.0.15" }
darling = "0.20.10"
proc-macro2 = "1.0.86"
quote = "1.0.36"
Expand Down

0 comments on commit abcc595

Please sign in to comment.