Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/publish-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,9 @@ jobs:
bun-version: latest
- run: bun i
- run: bun run build
# Publish every workspace under packages/* and providers/* as a PR-
# preview package, plus the cli example. `pkg-pr-new` honors the
# `"private": true` flag on `@workglow/test`, so internal-only
# workspaces are silently skipped. The shell expands the globs into
# one positional argument per matched directory.
- run: bunx pkg-pr-new publish ./packages/* ./providers/* ./examples/cli
62 changes: 32 additions & 30 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions examples/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @workglow/cli

## 0.2.36

## 0.2.35

### Refactors
Expand Down
2 changes: 1 addition & 1 deletion examples/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@workglow/cli",
"type": "module",
"version": "0.2.35",
"version": "0.2.36",
"repository": {
"type": "git",
"url": "https://github.com/workglow-dev/libs.git",
Expand Down
15 changes: 15 additions & 0 deletions examples/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @workglow/web

## 0.2.36

### Chores

- update deps

#### deps-dev

- bump vite from 8.0.12 to 8.0.13

### Updated Dependencies

- `@vitejs/plugin-react`: ^6.0.2
- `vite`: ^8.0.13

## 0.2.35

### Refactors
Expand Down
2 changes: 1 addition & 1 deletion examples/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@workglow/web",
"version": "0.2.35",
"version": "0.2.36",
"type": "module",
"description": "Web interface example for Workglow, showcasing a React-based UI for building and visualizing AI task pipelines.",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@workglow-dev/libs",
"type": "module",
"version": "0.2.35",
"version": "0.2.36",
"repository": {
"type": "git",
"url": "https://github.com/workglow-dev/libs.git"
Expand Down Expand Up @@ -130,4 +130,4 @@
],
"{packages,providers,examples}/*/src/**/*.json": "prettier --write"
}
}
}
21 changes: 21 additions & 0 deletions packages/ai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @workglow/ai

## 0.2.36

### Features

#### kb

- pluggable strategy with model config, IRunConfig threading, and document tasks

### Bug Fixes

#### util/worker, ai/task

- TTL-based pendingAborts eviction; clarify runWithIterable bond (#500)

#### ai

- avoid NaN reranker scores for empty queries
- escape regex metacharacters in RerankerTask.simpleRerank
- classify provider-error vs no-finish in AiTask.execute
- replace runWithIterable Proxy with shallow clone

## 0.2.35

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/ai/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@workglow/ai",
"type": "module",
"version": "0.2.35",
"version": "0.2.36",
"repository": {
"type": "git",
"url": "https://github.com/workglow-dev/libs.git",
Expand Down
1 change: 1 addition & 0 deletions packages/ai/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export * from "./provider/AiProviderRegistry";
export * from "./provider/QueuedAiProvider";

export * from "./capability";
export * from "./kb/createStandardKbStrategy";
export * from "./task";

import { AiVisionTask } from "./task/base/AiVisionTask";
Expand Down
Loading
Loading