Skip to content

Commit 02bd896

Browse files
committed
chore: release v14.0.30
1 parent 5cd30db commit 02bd896

File tree

8 files changed

+33
-18
lines changed

8 files changed

+33
-18
lines changed

CHANGELOG.md

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

3+
## [14.0.30](https://github.com/ax-llm/ax/compare/14.0.28...14.0.29) (2025-10-07)
4+
5+
### Features
6+
7+
* enhance README with new examples and Fluent Signature API ([5cd30db](https://github.com/ax-llm/ax/commit/5cd30db98271646f3119d2fd96a734063928cc80))
8+
## [14.0.29](https://github.com/ax-llm/ax/compare/14.0.28...14.0.29) (2025-10-04)
9+
10+
### Bug Fixes
11+
12+
* add GEPA feedback type hooks to AxCompileOptions ([#376](https://github.com/ax-llm/ax/issues/376)) ([4700c7e](https://github.com/ax-llm/ax/commit/4700c7e8e92ea3c52d9dd34020d466501dbef6bc))
13+
314
## [14.0.29](https://github.com/ax-llm/ax/compare/14.0.27...14.0.28) (2025-10-04)
415

516
### Bug Fixes

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@
7373
],
7474
"author": "Vikram <https://twitter.com/dosco>",
7575
"private": "true",
76-
"version": "14.0.29"
76+
"version": "14.0.30"
7777
}

src/aisdk/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ax-llm/ax-ai-sdk-provider",
3-
"version": "14.0.29",
3+
"version": "14.0.30",
44
"type": "module",
55
"description": "Ax AI SDK Provider for the Vercel AI SDK",
66
"repository": {
@@ -32,7 +32,7 @@
3232
},
3333
"dependencies": {
3434
"@ai-sdk/provider-utils": "^3.0.10",
35-
"@ax-llm/ax": "14.0.29",
35+
"@ax-llm/ax": "14.0.30",
3636
"ai": "^5.0.50",
3737
"zod": "^3.23.8"
3838
},

src/ax/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ax-llm/ax",
3-
"version": "14.0.29",
3+
"version": "14.0.30",
44
"type": "module",
55
"description": "The best library to work with LLMs",
66
"repository": {

src/examples/function.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,11 @@ const gen = new AxAgent<
116116
const ai = new AxAI({
117117
name: 'anthropic',
118118
apiKey: process.env.ANTHROPIC_APIKEY as string,
119-
config: { stream: true, model: AxAIAnthropicModel.Claude35Haiku },
119+
config: {
120+
stream: true,
121+
model: AxAIAnthropicModel.Claude35Haiku,
122+
maxTokens: 3000,
123+
},
120124
});
121125

122126
// const ai = new AxAI({

src/examples/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"tsx": "node --env-file=.env --import=tsx"
2222
},
2323
"dependencies": {
24-
"@ax-llm/ax": "14.0.29",
25-
"@ax-llm/ax-tools": "14.0.29",
24+
"@ax-llm/ax": "14.0.30",
25+
"@ax-llm/ax-tools": "14.0.30",
2626
"@opentelemetry/auto-instrumentations-node": "^0.60.1",
2727
"@opentelemetry/exporter-metrics-otlp-http": "^0.203.0",
2828
"@opentelemetry/exporter-prometheus": "^0.202.0",

src/tools/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ax-llm/ax-tools",
3-
"version": "14.0.29",
3+
"version": "14.0.30",
44
"type": "module",
55
"description": "Ax tools package",
66
"repository": {
@@ -32,7 +32,7 @@
3232
"postbuild": "node ../../scripts/postbuild.js"
3333
},
3434
"dependencies": {
35-
"@ax-llm/ax": "14.0.29"
35+
"@ax-llm/ax": "14.0.30"
3636
},
3737
"files": [
3838
"**/*"

0 commit comments

Comments
 (0)