Skip to content

Commit b9149a8

Browse files
committed
Release: 0.0.16
1 parent 8ff4896 commit b9149a8

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
# Version 0.0.16
4+
5+
- Added ability to configure the OpenAI API endpoint
6+
- Added support for Anthropic models
7+
- Fixed issue with `is_local` producing the incorrect result
8+
- Improved examples for the `orch` crate
9+
310
# Version 0.0.15
411

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

core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orch"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
edition = "2021"
55
license = "MIT"
66
description = "Language model orchestration library"
@@ -9,8 +9,8 @@ repository = "https://github.com/guywaldman/orch"
99
keywords = ["llm", "openai", "ollama", "rust"]
1010

1111
[dependencies]
12-
orch_response = { path = "../response", version = "0.0.15" }
13-
orch_response_derive = { path = "../response_derive", version = "0.0.15" }
12+
orch_response = { path = "../response", version = "0.0.16" }
13+
orch_response_derive = { path = "../response_derive", version = "0.0.16" }
1414
async-gen = "0.2.3"
1515
dotenv = "0.15.0"
1616
openai-api-rs = "5.0.2"

response/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orch_response"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
edition = "2021"
55
license = "MIT"
66
description = "Models for orch Executor responses"

response_derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orch_response_derive"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
edition = "2021"
55
license = "MIT"
66
description = "Derive macros for orch Executor responses"
@@ -12,7 +12,7 @@ keywords = ["llm", "openai", "ollama", "rust"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
orch_response = { path = "../response", version = "0.0.15" }
15+
orch_response = { path = "../response", version = "0.0.16" }
1616
darling = "0.20.10"
1717
proc-macro2 = "1.0.86"
1818
quote = "1.0.36"

0 commit comments

Comments
 (0)